我把我的问题放在代码的注释中。 我是编程新手。我会更多,也可能不理解非常技术性的回应。如果可以的话,请以最简单的方式解释。
while i < len(stored):
# I'd like this to break if any of these values are zero. How do I do that?
if (x, y, z, t) == 0:
break
答案 0 :(得分:1)
while i <= len(stored):
if 0 in (x, y, z, t):
break
答案 1 :(得分:1)
您可以使用in
运算符:
while i <= len(stored):
if 0 in (x, y, z, t):
break;