init class python code example
Example 1: what is init class python
The __init__ function serves two main purposes.
The first is its used as a tool to pass
arguments inside of it but the difference is you can spread those
arguments to other functions located in the same class.
To do this you would place the word (self.) keyword in another function
followed by the arguments name. This allows the argument to be spread
down to that function.
The second purpose is it allows you to pass arguments to a
class when calling the class. Without this function inside the class
when you call the class no arguments would be able to go inside getting
nothing in return.
Example 2: how to declare a class in python
class ClassName(object): #"(object)" isn't mandatory unless this class inherit from another
def __init__(self, var1=0, var2):
#the name of the construct must be "__init__" or it won't work
#the arguments "self" is mandatory but you can add more if you want
self.age = var1
self.name = var2
#the construct will be execute when you declare an instance of this class
def otherFunction(self):
#the other one work like any basic fonction but in every methods,
#the first argument (here "self") return to the class in which you are
Example 3: 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 4: init function in python
class Rectangle:
def __init__(self, length, breadth, unit_cost=0):
self.length = length
self.breadth = breadth
self.unit_cost = unit_cost
def get_area(self):
return self.length * self.breadth
def calculate_cost(self):
area = self.get_area()
return area * self.unit_cost
# breadth = 120 units, length = 160 units, 1 sq unit cost = Rs 2000
r = Rectangle(160, 120, 2000)
print("Area of Rectangle: %s sq units" % (r.get_area()))
Example 5: 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}"