Python中的重复 - 直到或等效循环

时间:2013-05-26 11:31:14

标签: python loops

我是Python编程的初学者。我正在尝试使用格雷厄姆扫描方法找到凸包的算法。但是,在伪代码中,有一个repeat ... until循环,我无法想出用Python编写它的方法。

如何在Python中编写repeat ... until循环?

1 个答案:

答案 0 :(得分:49)

REPEAT
    ...
UNTIL cond

相当于

while True:
    ...
    if cond:
        break