python 异常处理

Posted 安好_世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 异常处理相关的知识,希望对你有一定的参考价值。


name = ["test","测试"]
data = {}


try:
# open("oooo.txt")
# name[3]
# data["name"]
a = 1
print(a)

except (KeyError,IndexError) as e:
print("没有这个key", e)

except KeyError as e:
print("没有这个key",e)
except IndexError as e:
print("列表操作错误",e)
except Exception as e:#抓取所有错误
print("未知错误",e)
else :
print(‘一切正常‘)

finally:
print(‘不管有没有错,都执行‘)


#自定义异常
class WupeiqiException(Exception):

def __init__(self, msg):
self.message = msg

def __str__(self):
return self.message
try:
raise WupeiqiException(‘我的异常‘)
except WupeiqiException as e:
print(e)

以上是关于python 异常处理的主要内容,如果未能解决你的问题,请参考以下文章

Python异常处理

Python --- 异常处理

Python基础---python中的异常处理

Python异常处理

python-异常处理及异常处理的两种方式对比

Python 异常处理