Q. Output of the following python program will be?
Code:
x = [i**+1 for i in range(3)]; print(x);
β
Correct Answer: (B)
[0,1,2]
x = [i**+1 for i in range(3)]; print(x);
You must be Logged in to update hint/solution