Python program to create class,object and method.

PHOTO EMBED

Thu Sep 28 2023 12:18:10 GMT+0000 (Coordinated Universal Time)

Saved by @bvc #undefined

#Python program to create class,object and method.
class person: #class
    name = 'raju'
    age = 20
    def display (cls): #method
        print(cls.name)
        print(cls.age)
p=person() #object
p.display() #call the method using the instance
        
content_copyCOPY