A class is a collection of objects. A class contains the blueprints or the prototype from which the objects are being created. It is a logical entry that contains some attributes and methods.
myClass.myAttribute
Syntax :-
class className:
# Statement 1
....
....
....
# Statement 2
class Dog:
pass