Skip to content

Instantly share code, notes, and snippets.

@l1x
Created September 10, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save l1x/ae8753fc5a101a70637eb42114a737e8 to your computer and use it in GitHub Desktop.
Save l1x/ae8753fc5a101a70637eb42114a737e8 to your computer and use it in GitHub Desktop.
Wat moments while coding in Python
# nope
for folder in "state/" "logs/":
print(folder)
# nope #2
for folder in [ "state/" "logs/" ]:
print(folder)
# yes
for folder in "state/", "logs/":
print(folder)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment