14 lines
151 B
Python
14 lines
151 B
Python
![]() |
class A:
|
||
|
def a(self):
|
||
|
return "b"
|
||
|
|
||
|
|
||
|
class B(A):
|
||
|
def b(self):
|
||
|
return "c"
|
||
|
|
||
|
|
||
|
class Inherit(A):
|
||
|
def a(self):
|
||
|
return "d"
|