Subscribe for more
#howto #python #pythonprogramming #pythontutorial #swap #variable #tutorial #1minutevideo #60secondsvideo #fasttutorial #beginners #coding #developer
Full Code Snippet
Example 1:
--------------------------
x = 7
y = 13
x, y = y, x
print(x, y)