Questions tagged «try-except»


20
异常后如何重试?
我有一个以开头的循环for i in range(0, 100)。正常情况下,它可以正常运行,但有时由于网络条件而失败。目前,我已对其进行了设置,以便在失败时,它将continue在except子句中(继续到的下一个数字i)。 我是否可以将相同的数字重新分配给i循环并再次执行失败的循环?

2
带有Return语句的奇怪的Try-Except-Else-Finally行为
这是一些行为特殊的代码。这是我编写的行为的简化版本。这仍然会显示出奇怪的行为,我对为什么会发生这种情况有一些具体的疑问。 我在Windows 7上使用Python 2.6.6。 def demo1(): try: raise RuntimeError,"To Force Issue" except: return 1 else: return 2 finally: return 3 def demo2(): try: try: raise RuntimeError,"To Force Issue" except: return 1 else: return 2 finally: return 3 except: print 4 else: print 5 finally: print 6 结果: >>> print demo1() …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.