brian_o
0
Q:

gfg ide

class A:
	def hello1(self):        
    	print("Super")
class B(A):
	def hello1(self):
    	print("Child1")
class C(B):    
	def hello(self):        
    	print("Child2")
ob = C()
ob.hello()
ob.hello1()
0

New to Communities?

Join the community