What will be the output of the following code snippet?

a = 3
b = 1 
print(a, b)
a, b = b, a 
print(a, b)

1
3 1  1  3
2
3  1   3  1
3
1  3   1  3
4
1   3  3  1

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation