27

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

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

4

1 回答 1

79
REPEAT
    ...
UNTIL cond

Is equivalent to

while True:
    ...
    if cond:
        break
于 2013-05-26T11:41:23.020 回答