initialization methods of classes in python code example

Example 1: what is __init__ in python

# If you are familiar with C++ or Java think of the __init__ method as a constructor.
# It is the method that is being called when the class is called.In the following
# example we will see how we can call the __init__ method

my_variable = MyClass()

Example 2: init in python

class Employee():
    no_of_leaves = 8

    def __init__(self, aname, asalary, arole):
        self.name = aname
        self.salary = asalary
        self.role = arole

    def printdetail(self):
        return f"Name is {self.name}. His salary is {self.salary}." \
               f"and his role is {self.role}"