我有一个method
,try/catch
使用request
requests
一些网址。
如果发生超时(在except
中),如何修改我的代码以继续执行for循环中的下一个req
?
我尝试用python中的pass
,break
语句做一些功课,但似乎都不合适。
try:
request = requests.get(the_path, timeout=1.0, verify=False)
for req in request:
if inst.val in req:
print req
except requests.exceptions.Timeout:
print 'We timed out'
<somehow continue to next iteration of req>
有人可以告诉我如何做到这一点吗?谢谢
答案 0 :(得分:1)
我认为你要找的是continue
声明。