Akhil Narayanan Nair home

Python - Tuple Assignment

================

a=5

b=15

print(a,b)

temp=a

a=b

b=temp

print(a,b)

a,b=b,a

print(a,b)