multiple inheritance and inheritance in python code example
Example: multiple inheritance in python
# Example of multiple inheritance
# I recommend to avoid it, because it's too complex to be relyed on.
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()