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)
Related Posts
24 Apr 2024
»
Python - Bit NOT
23 Apr 2024
»
Python - Bit XOR
22 Apr 2024
»
Python - Bit OR