A class is a blueprint used to create objects.
It defines variables (attributes) and methods (behavior).
An object is an instance of a class.
Attributes store data inside objects.
Methods define behavior for objects.
Constructors initialize object data when created.
this refers to the current object.
Create a Student class with a method to print student info.