What is While Loop ? explain in short
Answers
Answered by
1
Explanation:
In most computer programming languages, awhile loop is a control flowstatement that allows code to be executed repeatedly based on a given Boolean condition. Thewhile loop can be thought of as a repeating if statement.
Answered by
17
while loop is a loop in python programming which executes until the condition given is true.
Similar questions