Python program to demonstrate self-variable and constructor

PHOTO EMBED

Thu Sep 28 2023 18:39:45 GMT+0000 (Coordinated Universal Time)

Saved by @bvc #undefined

#Python program to demonstrate self-variable and constructor
class A:
    def __init__(self):
        self.rno = 49
        self.name = 'Manoteja'
    def display(self):
        print(self.rno)
        print(self.name)
a = A()
a.display()
content_copyCOPY