What will be the value of x after the following code is executed:
x = 10
y = 2
x = x ** y
y = x // y
x = x % y
y = y is x
print(x, y)
Options:
A) 0 True
B) 0 False
C) 50 True
D) 50 False
Answer:
Answer by student
B) 0 False
Detailed answer by teachoo
The rest of the post is locked. Join Teachoo Black to see the full post.