如何编写 try/except 块以捕获所有 Python 异常?
这虽然是通用经验法则,即你可以像下面这样使用代码捕获所有异常,但你最好不要这样
try: #do_something() except: print "Exception Caught!"
不过,这也会捕获我们可能不想关注的异常,例如 KeyboardInterrupt。我们无法捕获异常,除非我们立刻重新引发异常
try: f = open('file.txt') s = f.readline() i = int(s.strip()) except IOError as (errno, strerror): print "I/O error({0}): {1}".format(errno, strerror) except ValueError: print "Could not convert data to an integer." except: print "Unexpected error:", sys.exc_info()[0] raise
如果脚本中没有包含 file.txt,我们会得到类似下面的输出。
I/O error(2): No such file or directory
广告