While Loop in Python
The while loop is used in the python for repeat the piece of code for number of times till to met of specific condition . In the python ,"while" keyword is used to start the while loop, after the keyword while we have to write the specific condition in the same line and add a ":" colon. In this while we have to write a piece of code that we want to perform number of times.