IOError异常
当输入/输出操作失败时会引发错误,例如open()
尝试打开不存在的文件时的打印语句或函数。还会引发与操作系统相关的错误。
如果将给定代码编写在try块中,则会引发输入/输出异常,该异常将在except块中进行处理,如下所示
import sys def whatever(): try: f = open ( "foo.txt", 'r' ) except IOError, e: print e print sys.exc_type whatever()
输出结果
[Errno 2] No such file or directory: 'foo.txt' <type 'exceptions.IOError'>