Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # pythonic_variable_swap.py
- a = "alpha"
- b = "omega"
- # DON'T DO THIS:
- temp = a
- a = b
- b = temp
- #-----------------------------
- a, b = b, a # the first shall be last -- and versa vice
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement