Python - Constructors and Object Initialization
What will be the output of this code?
class A:
def __init__(self, x):
self.x = x
def show(self):
print(self.x)
obj = A(10)
obj.show()