-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOOPS_8.py
52 lines (40 loc) · 1.27 KB
/
OOPS_8.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class Employee:
no_of_leaves = 8
var = 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):
return cls(*string.split("-"))
@staticmethod
def printgood(string):
print("This is good " + string)
class Player:
var = 9
no_of_games = 4
def __init__(self, name, game):
self.name = name
self.game =game
def printdetails(self):
return f"The Name is {self.name}. Game is {self.game}"
class CoolProgramer(Player, Employee):
var = 10
language = "C++"
def printlanguage(self):
print(self.language)
harry = Employee("Harry", 255, "Instructor")
rohan = Employee("Rohan", 455, "Student")
shubham = Player("Shubham", ["Cricket"])
karan = CoolProgramer("Karan",["Cricket"])
# det = karan.printdetails()
# karan.printlanguage()
# print(det)
print(karan.var)
"""FIRSTLY PROGRAMS SEES COOLPROGRAMMER CLASS THEN IN THE SEQUENCE IN WHICH CLASSES ARE WRITTEN (#MULTIPLE-INHERITANCE)"""