Q. What will be the output of the following code?
Code:
a = 1 b = ++a print(b is a)
β
Correct Answer: (A)
True
a = 1 b = ++a print(b is a)
You must be Logged in to update hint/solution