Created
September 10, 2019 09:40
-
-
Save l1x/ae8753fc5a101a70637eb42114a737e8 to your computer and use it in GitHub Desktop.
Wat moments while coding in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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