Get link Facebook X Pinterest Email Other Apps April 19, 2022 class and objectclass Person: def __init__(self, name, age): self.name = name self.age = age def myfunc(self): print("Hello my name is " + self.name)p1 = Person("John", 36)p1.myfunc() Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment