Advertisement
lessientelrunya

swap1

Jun 30th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. x = 1
  2. y = 2
  3.  
  4. print("x is {}".format(x))
  5. print("y is {}".format(y))
  6. print("Swapping...")
  7. x, y = y, x
  8. print("Swapped.")
  9. print("x is {}".format(x))
  10. print("y is {}".format(y))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement