gpt4 book ai didi

python - 是 while True : a suitable way to repeat a block until an accepted case is reached?

转载 作者:太空宇宙 更新时间:2023-11-03 13:05:43 25 4
gpt4 key购买 nike

while True 是否是一种可接受的循环代码块的方法,直到达到如下可接受的情况?有没有更优雅的方法来做到这一点?

while True:
value = input()
if value == condition:
break
else:
pass
# Continue code here.

感谢您的任何输入。

最佳答案

这就是在 Python 中执行此操作的方法。不过,您不需要 else: pass 位。

请注意,在 python 2.x 中,您可能需要 raw_input 而不是 input

关于python - 是 while True : a suitable way to repeat a block until an accepted case is reached?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3336052/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com