I am learning inheritance and got this problem
class A: def test(self): print("test of A called") class B(A): def test(self):