Python Classes and Objects
Class एक ब्लूप्रिंट है जिसका उपयोग कर object create किये जाते है। class में data member और member function होते है। data member variable होते है जो data को स्टोर करते है वही member function methods होते है जो data member पर operations परफॉर्म करते है।
Create class
class को क्रिएट करने के लिए class keyword का उपयोग किया जाता है।
class FirstClass:
a = 5
Add methods in class
class Employee:
def __init__(self, empname, age):
self.empname = empname
self.age = age
def printName(self):
print("Employee name is " + self.empname)
e1 = Employee("Ram", 25)
print(e1.empname)
print(e1.age)
e1.printName()
Create Object from class
obj = FirstClass()
print(obj.a)
__init__() Function
__init__() यह होता है इसे initialization method भी कहते है जो python call करता है जैसे ही class का object क्रिएट होता है।
class Employee:
def __init__(self, empname, age):
self.empname = empname
self.age = age
e1 = Employee("Ram", 25)
print(e1.empname)
print(e1.age)
0 टिप्पणियाँ
If you have any doubt. Please let me know