格式
try:
code
except (Error1, Error2) as e:
print(e)
以上是伪代码,理解为重
当然要是错误种类很多的话不可能一个一个写出来,所以有一个方法可以抓住所有已知错误
try:
code
except Exception as e:
print(e)
建议用在最后抓未知错误
可以自定义异常
继承Exception类,并且要自己用raise触发
转载请注明出处
python自学技术互助扣扣群:670402334