Repeat-until or equivalent loop in Python
Repeat-until or equivalent loop in Python
REPEAT
...
UNTIL cond
Is equivalent to
while True:
...
if cond:
break
REPEAT
...
UNTIL cond
Is equivalent to
while True:
...
if cond:
break