1. 학습
  2. /
  3. 강의
  4. /
  5. Intermediate Object-Oriented Programming in Python

Connected

연습 문제

MRO for multiple inheritance

Similar to before, you've built a Smartphone class that inherits from two classes; Computer and Telephone. The class definition looks something like this:

class Smartphone(Computer, Telephone):
  ...

Identify the order in which Python will search for methods in the Smartphone class hierarchy upon execution.

지침

50 XP

가능한 답변