如何创建一个在其条件中包含列表的if语句?

时间:2017-06-02 20:01:46

标签: python list python-3.x

我把我的问题放在代码的注释中。 我是编程新手。我会更多,也可能不理解非常技术性的回应。如果可以的话,请以最简单的方式解释。

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

2 个答案:

答案 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;