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

preview_player
Показать описание
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__)
Рекомендации по теме