Classes and objects are the foundation of Object-Oriented Programming (OOP) in Python.

Create Class :
                To create a class , use the keyword Class. 
Python
class ClassName: statements 

Create Object :
               We can use the class name to create object .
Python
s1 = Student() 

Delete Object :
              del keyword is used to delete the class. 
Python
del p1