Wednesday, June 8, 2022

class and objects

 class and object example: 

class Person:

 def __init__(self,name,age,city):

  self.name = name 

  self.age = age

  self.city = city

p1 = Person ("shraddha",19,"babra")

print (p1.name)

print(p1.age)

print(p1.city)




No comments:

Post a Comment