Prev | Index | Nextwhile Statements
- Not particularly common in Python source code
- But there if you need it
- Use break and continue to exit a loop or jump to the next iteration
>>> x = 3
>>> while x > 0:
... print x
... x = x - 1
...
3
2
1
An Introduction To Python