Wednesday, January 28, 2015

While Loop

While loops, like the for loop, are used for repeating sections of code - but unlike a for loop, the while loop will not run n times, but until a defined condition is met.

Source Code: example7.py

Output: Python Shell
 Reference: wiki.python.org

No comments:

Post a Comment