I have tried to run the following code:
1: class A(object): 2: def __init__(self, a): 3: super(A, self).__init__() 4: print(\'A\') 5: 6: 7: class