Python Program using the default constructor


In this program, you will learn how to implement the default constructor in Python.


def __init__(self):
    //statement

Example: How to implement the default constructor in Python

class Test:

    def __init__(self):
        print("Default Constructor is called here")

    def msg(self):
        print("method is called here")


obj1 = Test()
obj1.msg()

Output:

Default Constructor is called here
method is called here