学习:python异常
异常就是我们在写python时,经常看到的报错信息,例如:NameError TyperError ValueError 等 这些都是异常
异常会终止程序
SyntaxError 语法错误
NameError: name 'b' is not defined变量名写错
IndentationError: unexpected indent缩进出错
ModuleNotFoundError第三方包未安装
FileNotFoundError 文件未找到
AttributeError: 'int' object has no attribute 'eat' 某个对象不存在某个属性和方法
IndexError: list index out of range 索引越界
ZeroDivisionError: division by zero 0作为了除数
以上只是冰山一角 要看懂报错内容 定位问题 实在看不懂浏览器搜索一下报错内容