how to make python do something untill some time code example
Example: python loop until condition met
finished = False
while not finished:
... do something...
finished = evaluate_end_condition()
finished = False
while not finished:
... do something...
finished = evaluate_end_condition()