python面向对象--异常处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python面向对象--异常处理相关的知识,希望对你有一定的参考价值。
1.常见异常类型
IOError 文件读写异常
ValueError值异常,一般是数据类型不对应
IndexError下标索引越界
2.try...except...
try:
f=open(‘test.txt‘)
except IOError as e:
print(e)
>>:
[Errno 2] No such file or directory: ‘test.txt‘
3.错误基类Exception
try:
print(a)
except Exception as e:
print(e)
>>:
name ‘a‘ is not defined
以上是关于python面向对象--异常处理的主要内容,如果未能解决你的问题,请参考以下文章