Created
November 1, 2017 19:21
-
-
Save pykong/be06d65a3de73839e59aedbaa5845ebf to your computer and use it in GitHub Desktop.
Be careful with single item tuples!
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
l = ['Your Code Here'] | |
t = ('Your Code Here') | |
for item in l: | |
print(item) | |
for item in t: | |
print(item) | |
# Output | |
Your Code Here | |
Y | |
o | |
u | |
r | |
C | |
o | |
d | |
e | |
H | |
e | |
r | |
e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment