Skip to content

Instantly share code, notes, and snippets.

def investigate_loop()
i = 0
numbers = []
while i < 6:
print "At the top i is %d" % i
numbers.append(i)
i = i + 1
print "Numbers now: ", numbers
@cdunklau
cdunklau / .gitignore
Last active January 3, 2016 10:09 — forked from habnabit/chatserver.py
Chatserver Nightmare! Now with flake8 compliance!
*.py[co]