【Python之旅】第四篇(二):Pyt
- 2020 年 1 月 10 日
- 笔记
在Python程序的执行过程中,难免会出现异常的情况,如果做的是跟用户交互的程序,当用户输入不可接受的内容时,在可预见的范围内,我们当然是希望可以给用户一些提示,而不是原来Python内置异常中的那些提示语句,毕竟那些语句只适合给程序员做调试参考,对用户并没有多大的价值。因此这就需要了解Python的常见异常了。
当然,我们也可以制作自己的异常,当用户输入满足或不满足我们的需求时,就可以触发这些异常,以使我们写的程序更加人性化。
1.Python常见异常与演示
Python常见异常可列举如下:
常见异常 |
中文解释 |
---|---|
IOError |
输入/输出异常;基本上是无法打开文件 |
ImportError |
无法引入模块或包;基本上是路径问题或名称错误 |
IndexError |
下标索引超出序列边界,比如当x只有三个元素,却试图访问x[5] |
KeyError |
试图访问字典里不存在的键 |
NameError |
使用一个还未被赋予对象的变量 |
IndentationError |
语法错误(的子类) ;代码没有正确对齐 |
SyntaxError |
Python代码非法,代码不能编译 |
KeyboardInterrupt |
Ctrl+C被按下 |
EOFError |
Ctrl+D被按下 |
UnboundLocalError |
试图访问一个还未被设置的局部变量,基本上是由于另有一个同名的全局变量,导致你以为正在访问它 |
AttributeError |
试图访问一个对象没有的属性,比如myInst.foo,但是myInst没有属性foo |
ValueError |
传入一个调用者不期望的值,即使值的类型是正确的 |
TypeError |
传入对象类型与要求的不符合 |
对常见的异常,做如下的简单演示:
IOError:输入/输出异常
>>> f = file('myfile.txt') Traceback (most recent call last): File "<stdin>", line 1, in <module> IOError: [Errno 2] No such file or directory: 'myfile.txt'
ImportError:无法引入模块或包
>>> import xpleaf Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named xpleaf
IndexError:下标索引超出序列边界
>>> a = range(3) >>> a [0, 1, 2] >>> a[3] Traceback (most recent call last): File "<stdin>", line 1, in <module> IndexError: list index out of range
KeyError:试图访问字典里不存在的键
>>> mydict={'name':'xpleaf'} >>> mydict['age'] Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError: 'age'
NameError:使用一个还未被赋予对象的变量
>>> print xpleaf Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'xpleaf' is not defined
IndentationError:语法错误(的子类) ;代码没有正确对齐
>>> for i in range(3): ... print i ... print 'Error!' File "<stdin>", line 3 print 'Error!' ^ IndentationError: unexpected indent
SyntaxError:Python代码非法,代码不能编译
xpleaf@xpleaf-machine:/mnt/hgfs/Python/day4/blog$ python Error.py File "Error.py", line 3 prin kd ^ SyntaxError: invalid syntax >>> for File "<stdin>", line 1 for ^ SyntaxError: invalid syntax
KeyboardInterrupt:Ctrl+C被按下
xpleaf@xpleaf-machine:/mnt/hgfs/Python/day4/blog$ python test.py name:^CTraceback (most recent call last): File "test.py", line 2, in <module> name = raw_input('name:') KeyboardInterrupt
EOFError:Ctrl+D被按下
xpleaf@xpleaf-machine:/mnt/hgfs/Python/day4/blog$ python EOF.py name:Traceback (most recent call last): File "EOF.py", line 2, in <module> name = raw_input('name:') EOFError
UnboundLocalError:试图访问一个还未被设置的局部变量
程序代码如下: name = 'xpleaf' def sayYourName(mark): if mark == 1: name = 'yonghaoye' else: print 'My name is:',name sayYourName(0) 执行情况如下: xpleaf@xpleaf-machine:/mnt/hgfs/Python/day4/blog$ python test.py My name is: Traceback (most recent call last): File "test.py", line 10, in <module> sayYourName(0) File "test.py", line 8, in sayYourName print 'My name is:',name UnboundLocalError: local variable 'name' referenced before assignment 注意:如果是sayYourName(1),则不会出现问题,此时相当于在函数中定义了一个局部变量
AttributeError:试图访问一个对象没有的属性,比如myInst.foo,但是myInst没有属性foo
>>> class myClass(): ... pass ... >>> myInst = myClass() >>> myInst.bar = 'spam' >>> myInst.bar 'spam' >>> myInst.foo Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: myClass instance has no attribute 'foo'
ValueError:传入一个调用者不期望的值,即使值的类型是正确的
>>> f = file('myfile.txt','io') Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: mode string must begin with one of 'r', 'w', 'a' or 'U', not 'io'
TypeError:传入对象类型与要求的不符合
>>> num = 3 >>> str = 'name' + num + 'age' Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: cannot concatenate 'str' and 'int' objects
2.Python异常捕捉
知道了常见的Python异常,就有需要对这些异常进行捕捉了,主要是使用:try…except语句进行异常的捕捉。
简单演示一个异常的捕捉,假设这里要捕捉的异常为IndexError:
代码如下: try: a = [1, 2, 3] a[3] except IndexError: print '