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:-
While condition:
body of while

Program:

  # 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

Do you Know?
Progamming is what actually means ?

What is software development ?

How we categorized software development in different manner.

C Programming
C Plus Plus
Python
Java Development
Web Designing
Javascript
Mysql
Oracle
We cover all the programming concepts in various programming languages, this tutorials are very help full for bigener as well as Experience developer, for the ease of understanding we categorized programming in different manner likewise.