Comment faire une classe qui hérite d'une autre classe de fichiers dans Python

Creating a class that inherits from another class
To create a class that inherits from another class, after the class name you'll put parentheses and then list any classes that your class inherits from. In a function definition, parentheses after the function name represent arguments that the function accepts.
Aditya Coding