-
Notifications
You must be signed in to change notification settings - Fork 1
/
OOPS_5.py
33 lines (24 loc) · 807 Bytes
/
OOPS_5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
class Employee:
no_of_leaves = 8
def __init__(self, aname, asalary, arole):
self.name = aname
self.salary = asalary
self.role = arole
def printdetails(self):
return f"The Name is {self.name}. Salary is {self.salary} and role is {self.role}"
@classmethod
def change_leaves(cls, newleaves):
cls.no_of_leaves = newleaves
@classmethod
def from_dash(cls, string):
# params = string.split("-")
# print(params)
# return cls(params[0], params[1], params[2])
return cls(*string.split("-"))
harry = Employee("Harry", 255, "Instructor")
rohan = Employee("Rohan", 455, "Student")
karan = Employee.from_dash("Karan-480-Student")
print(karan.no_of_leaves)
# rohan.change_leaves(34)
#
# print(harry.no_of_leaves)