Skip to content

Instantly share code, notes, and snippets.

Created May 11, 2015 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/4aef3dfcf966a7fb246e to your computer and use it in GitHub Desktop.
Save anonymous/4aef3dfcf966a7fb246e to your computer and use it in GitHub Desktop.
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