Example & Tutorial understanding programming in easy ways.

What is Class in Python ?

A Python class is a blueprint for creating the objects. It defines member variables and gets their behavior associated with them.

Keyword class is used for declared a class

program:

// It is class

class Hello():

       pass

obj=Hello() //object

Read More →