python repeat until true code example
Example 1: python while true loop
while True:
print("Hi")
Example 2: python loop until condition met
finished = False
while not finished:
... do something...
finished = evaluate_end_condition()
while True:
print("Hi")
finished = False
while not finished:
... do something...
finished = evaluate_end_condition()