InterviewSolution
Saved Bookmarks
| 1. |
How will you check if a class is a child of another class? |
|
Answer» This is DONE by using a method called issubclass() provided by PYTHON. The method tells us if any class is a child of another class by returning true or false accordingly.
|
|