Extending a class provides it with access to the member variables and methods of another class. This concept is known as inheritance.
Solution for How to extend a class in Python : You can use the inheritance syntax class DerivedClass(BaseClass) to extend a class Use the syntax class DerivedClass(BaseClass) to extend BaseClass as DerivedClass, so that DerivedClass inherits BaseClass.