gpt4 book ai didi

python - 你能 "restart"Python 循环的当前迭代吗?

转载 作者:太空狗 更新时间:2023-10-29 21:16:40 24 4
gpt4 key购买 nike

有没有办法实现这样的东西:

for row in rows:
try:
something
except:
restart iteration

最佳答案

你可以将你的 try/except block 放在另一个循环中,然后在它成功时中断:

for row in rows:
while True:
try:
something
break
except Exception: # Try to catch something more specific
pass

关于python - 你能 "restart"Python 循环的当前迭代吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29776689/

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