Python extends two classes code example
Example 1: multiple inheritance in python
class Thing(object):
def func(self):
print("Function ran from class Thing()")
class OtherThing(object):
def otherfunc(self):
print("Function ran from class OtherThing()")
class NewThing(Thing, OtherThing):
pass
some_object = NewThing()
some_object.func()
some_object.otherfunc()
Example 2: python multiclass inheritance with inputs
class a:
def __init__(self):
print("Hello")
class c:
def __init__(self, text):
print(text)
class d(a,c):
def__init__(self,text):
a.__init__(self)
c.__init__(self,text)