Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumPythonMRO and C3 linearizationSingle-choice MCQ2,415 views

What will this code print?

class A: def hello(self): return "A" class B(A): def hello(self): return super().hello() + "B" print(B().hello())