Computer Science, asked by vishalthakur441010, 6 months ago

What will be the output of the following:
X=10
y=20
x, y=y, X
print(x, y)​

Answers

Answered by Saipavan55
4

Answer:

X=10

y=20

x,y=y,X     #x becomes 20 and y becomes 10

print(x,y)

Output:

20  10

Similar questions