Skip to content

Instantly share code, notes, and snippets.

@griiid
Created March 19, 2021 14:46
Show Gist options
  • Save griiid/22b6f3e138d7ce6238b1e826e562e8af to your computer and use it in GitHub Desktop.
Save griiid/22b6f3e138d7ce6238b1e826e562e8af to your computer and use it in GitHub Desktop.
# Yes:
if x == 4: print x, y; x, y = y, x
# No:
if x == 4 : print x , y ; x , y = y , x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment