While Loop Paython
Advertisements
While Loop in Python
Loops are used in programming to repeat a specific block of code on the basis of certain condition. While Loops repeat as long as a certain boolean condition is met. While loop is generally used when we don't know beforehand, the number of times to iterate.
While Loop Syntax Python
while condition: Body of while
While Loop Example in Python
# Prints out 0,1,2,3,4,5,6,7,8,9 count = 0 while count < 10: print(count) count += 1 # This is the same as count = count + 1
Output
0 1 2 3 4 5 6 7 8 9
Google Advertisment