class and objects
Python
class Person:
def __init__ (self, name, age, sal, city):
self.name = name
self.age = age
self.sal = sal
self.city = city
p = Person('saikiran', 23,250000, 'california')
print(p.name)
print(p.age)
print(p.sal)
print(p.city)
print(p)
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.