-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolymerphism.py
More file actions
27 lines (24 loc) · 935 Bytes
/
polymerphism.py
File metadata and controls
27 lines (24 loc) · 935 Bytes
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
#ducking typing in python
class Harsha:
def possiblity(self):
print(" i am harsha,i can lick dick of people how spent money on me ")
def stability(self):
print("if possbile i can nuts with them even possibity of knife fight")
class praveen:
def possiblity(self):
print(" An insta celebrity who focus only vidoes making and editing forget to study for his career")
def stability(self):
print(" but i specifically think that he focued in his career, basically what the fuck we done for our future even poeple like as struggle to post one pic in insta but guy himself pushed him to post photo continuesly even every one make fun of him")
class solution:
def stability(self):
print("hello")
class dem:
def display(self,obj):
obj.possiblity()
obj.stability()
print("information is wealth")
s=solution()
h=Harsha()
p=praveen()
d=dem()
d.display(s)