How to get the parents of a Python class?

后端 未结 6 1831
野趣味
野趣味 2020-11-28 03:49

How can I get the parent class(es) of a Python class?

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-28 04:49

    New-style classes have an mro method you can call which returns a list of parent classes in method resolution order.

提交回复
热议问题