gpt4 book ai didi

python - 如何执行具有多个条件的while循环

转载 作者:IT老高 更新时间:2023-10-28 21:13:00 25 4
gpt4 key购买 nike

我在 python 中有一个 while 循环

condition1=False
condition1=False
val = -1

while condition1==False and condition2==False and val==-1:
val,something1,something2 = getstuff()

if something1==10:
condition1 = True

if something2==20:
condition2 = True

'
'

我想在所有这些条件都为真时跳出循环,上面的代码不起作用

我原来有

while True:
if condition1==True and condition2==True and val!=-1:
break

这行得通,这是最好的方法吗?

谢谢

最佳答案

改为

关于python - 如何执行具有多个条件的while循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2146419/

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