filmov
tv
Python Tutorial For Beginners | init method and self keyword in python

Показать описание
Please like and subscribe this video for continuous updates
'''
init() and self keyword in python
'''
class Student:
def __init__(self, name):
def setName(self, name):
def getName(self):
stu1 = Student("Harshal")
print(stu1.__dict__)
'''
init() and self keyword in python
'''
class Student:
def __init__(self, name):
def setName(self, name):
def getName(self):
stu1 = Student("Harshal")
print(stu1.__dict__)