Bad Python Programmer
Simple python examples.
Tuesday, 28 July 2015
Flow Control 2: while, while-else
#!/usr/bin/env python
# Simple while loop example.
i = 0
while i != 10:
i = i + 1
print i
# while-else
while i != 10:
i = i +1
print i
else:
print "We're all done here!"
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment