gpt4 book ai didi

python - For 循环和多个条件

转载 作者:太空狗 更新时间:2023-10-29 20:52:47 26 4
gpt4 key购买 nike

<分区>

在 C++ 中,可以这样说:

for (int i = 0; i < 100 && !found; i++) {
if (items[i] == "the one I'm looking for")
found = true;
}

所以你不需要使用“break”语句。

在 Python 中,我猜你需要写:

found = False

for item in items:
if item == "the one I'm looking for"
found = True
break

我知道我可以编写一个包含相同代码的生成器,这样我就可以隐藏这个破坏性的东西。但我想知道是否有任何其他方法可以在不使用额外变量或 while 循环的情况下实现相同的事情(具有相同的性能)。

我知道我们可以说:

found = "the one I'm looking for" in items

我只是想了解是否可以在 for 循环中使用多个条件。

谢谢。

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