gpt4 book ai didi

python - 如何在 Python 中继续嵌套循环

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

你如何继续在Python中说两个嵌套循环的父循环?

for a in b:
for c in d:
for e in f:
if somecondition:
<continue the for a in b loop?>

我知道在大多数情况下您可以避免这种情况,但可以在 Python 中完成吗?

最佳答案

  1. 打破内循环(如果之后没有其他内容)
  2. 将外循环体放入函数中,并从函数中返回
  3. 引发异常并在外层捕获它
  4. 设置一个标志,从内部循环中中断并在外部级别对其进行测试。
  5. 重构代码,让您不再需要这样做。

我每次都会选择 5 个。

关于python - 如何在 Python 中继续嵌套循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14829640/

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