有没有
do until x: ...
在 Python 中,还是实现这种循环结构的好方法?
Python 中没有 do-while 循环。
这是一个类似的结构,取自上面的链接。
while True: do_something() if condition(): break