Skip to content

Instantly share code, notes, and snippets.

@fkei
Created March 6, 2013 14:28
Show Gist options
  • Select an option

  • Save fkei/5099650 to your computer and use it in GitHub Desktop.

Select an option

Save fkei/5099650 to your computer and use it in GitHub Desktop.
>>> a, b = 1, 2
>>> print a, b
1 2
>>> b, a = a, b
>>> print a, b
2 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment