While Loop:

While loop is looping as long as the condition is True. Which means, while loop will still loop as long as a given condition is true and it stops when the condition becomes False.


While loop is very important and almost all programming languages have while loop.


Python have two primitive loops: For, While.