Python - Inheritance and Code Reuse
What will be the output of this code?
class X:
def __init__(self):
print("X init")
class Y(X):
def __init__(self):
super().__init__()
print("Y init")
obj = Y()