Skip to content

Instantly share code, notes, and snippets.

@akreer135
Created December 2, 2013 00:08
Show Gist options
  • Save akreer135/7742648 to your computer and use it in GitHub Desktop.
Save akreer135/7742648 to your computer and use it in GitHub Desktop.
lerps two
i = 0
numbers = []
while i < 6:
print "At the top i is %d" % i
numbers.append(i)
print "Numbers now: ", numbers
print "At the bottom i is %d" % i
print "The numbers: "
for num in numbers:
print num
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment