while loops will keep executing the same group of instructions until a specified loop condition stops being true.
If a numeric variable is used to control the iterations of a while condition, that variable must eventually change to a value that makes the while condition False, otherwise the while loop will keep executing indefinitely. Explanation: The break keyword can stop a while loop. It is often used in the body of a nested if-else conditional statement inside of a while loop.
In Python, what do while loops do?
How confident are you in this answer?