标签: python loops
我是Python编程的初学者。我正在尝试使用格雷厄姆扫描方法找到凸包的算法。但是,在伪代码中,有一个repeat ... until循环,我无法想出用Python编写它的方法。
repeat ... until
如何在Python中编写repeat ... until循环?
答案 0 :(得分:49)
REPEAT ... UNTIL cond
相当于
while True: ... if cond: break