Advertisement
here2share

# pythonic_variable_swap.py

Jan 7th, 2015
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. # pythonic_variable_swap.py
  2.  
  3. a = "alpha"
  4. b = "omega"
  5. # DON'T DO THIS:
  6. temp = a
  7. a = b
  8. b = temp
  9. #-----------------------------
  10. a, b = b, a   # the first shall be last -- and versa vice
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement