while loop
while <condition>:
the <condition> must evaluate to TRUE or FALSE
the <condition> can be any boolean expression
during the looping process the condition must change from TRUE to FALSE, otherwise an infinite loop (or continuous loop) will exist.
An infinite loop is a loop the never ends.