
Set one Python class to inherit from another by putting the parent in ():
class Parent:
pass
class Child(Parent):
pass
Child.__bases__ # who does Child inherit from?
c = Child()
isinstance(c, Child) # True
isinstance(c, Parent) # also True!
