while loop can be executed minimum number of time
Answers
Answered by
5
Answer:
0
Depends on how you write it. If while(){} , then yes, the minimum number of times is 0. If not talking about the DO, then it's 0. Yes, if the while's condition isn't satisfied at the first time, the loop is executed zero times.
Answered by
4
Answer:
In python you can make a while loop loop for as many times as you want.
Or you can execute it when a action happens
Similar questions