Skip to content

Instantly share code, notes, and snippets.

@eriky
Created January 4, 2020 11:07
Show Gist options
  • Save eriky/3ef96dafa99210675778fd78214c16d2 to your computer and use it in GitHub Desktop.
Save eriky/3ef96dafa99210675778fd78214c16d2 to your computer and use it in GitHub Desktop.
a = 1
b = 2
a, b = b, a
print (a)
# 2
print (b)
# 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment