1、OSError异常
OSError是操作系统相关异常。
FileNotFoundError:[Error2]Nosuchfileordirectory:'abc.txt'
2、IndexError异常
IndexError异常是访问序列元素时,下标索引超出取值范围所引发的异常。
IndexError:listindexoutofrange
3、ValueError异常
ValueError异常是由于传入一个无效的参数值而引发的异常。
>>>i='QWE >>>print(5/int(i)) Traceback(mostrecentcalllast): File"<pyshell#22>",line1,in<module> print(5/int(i)) ValueError:invalidliteralforint()withbase10:'QWE'