MRO

Report a typo

Here's a class hierarchy with multiple inheritance:

class A:
    ...


class B(A):
    ...


class C(A):
    ...


class D(C, B):
    ...

What will be the output of print(D.__mro__)?

Select one option from the list
___

Create a free account to access the full topic