Created
February 13, 2016 02:05
-
-
Save kellegous/1e4fa23d9c42647e9575 to your computer and use it in GitHub Desktop.
This file contains 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
a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] | |
print('my list has this many in it') | |
print(len(a)) | |
for i in a: | |
print(i) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment