📜  python循环直到条件满足 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:41.524000             🧑  作者: Mango

代码示例1
finished = False
while not finished:
    ... do something...
    finished = evaluate_end_condition()