Created
May 11, 2015 19:43
-
-
Save anonymous/4aef3dfcf966a7fb246e 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
i = 0 | |
numbers = [] | |
while i < 6: | |
print "At the top i is %d" % i | |
numbers.append(i) | |
i = i + 1 | |
print "Numbers now: ", numbers | |
print "At the bottom i is %d" % i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment