How to use a method in a class from another class that inherits from yet another class python
问题 I have 3 classes : class Scene(object): def enter(self): pass class CentralCorridor(Scene): def enter(self): pass class Map(object): def __init__(self, start_game): pass And the class map is initiated like this : a_map = map('central_corridor') It means that there is a map(obviously not graphical like a maze let's suppose) in which the first scene of the game(the game is like zork) is central corridor. So I want to use the enter method of the class CentralCorridor in the map class but I am