Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Python 编程的初学者。我正在尝试使用格雷厄姆的扫描方法找到凸包的算法。但是,在伪代码中有一个repeat ... until循环,我想不出用 Python 编写它的方法。
repeat ... until
如何repeat ... until在 Python 中编写循环?
REPEAT ... UNTIL cond
Is equivalent to
while True: ... if cond: break