Classes

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.

Some important points

Syntax :-

class className: # Statement 1 .... .... .... # Statement 2

Creating an empty class

class Dog: pass