The syntax for a derived class definition looks like this:
class DerivedClassName(BaseClassName):
<statement-1>
.
<statement-N>
The name BaseClassName must be defined in a scope containing the derived class definition.
person
employee