cs50/swap.py

6 lines
82 B
Python

x = 1
y = 2
print(f"x is {x}, y is {y}")
x, y = y, x
print(f"x is {x}, y is {y}")