input......
#class- tempalte
#object - instance of the class
#DRY = do not repeat yourself
#get no of films(ravi)
#class student :
# pass
#harry=student()
class Employee:
no_of_leaves=8
pass
arihant=Employee()
vaibhav=Employee()
arihant.name= "ARIHANT"
arihant.salary=56947
arihant.role="coder"
vaibhav.name="VAIBHAV"
vaibhav.salary=56684
vaibhav.role="hacker"
print(arihant.role)
print(vaibhav.role)
arihant.no_of_leaves=7
vaibhav.no_of_leaves=7
print(arihant.no_of_leaves)
print(arihant.__dict__)
print(vaibhav.__dict__)
output
coder
hacker
7
{'name': 'ARIHANT', 'salary': 56947, 'role': 'coder', 'no_of_leaves': 7}
{'name': 'VAIBHAV', 'salary': 56684, 'role': 'hacker', 'no_of_leaves': 7}