首页 > 代码库 > Python3 中异常的处理

Python3 中异常的处理

1.普通异常的使用:

names = [‘wt‘,‘gxb‘]
data = http://www.mamicode.com/{}>

2.自己触发的异常:

class MyExpection(Exception):
    def __init__(self,msg):
        self.message = msg

try:
    raise MyExpection(‘触发了异常‘)
except MyExpection as e:
    print(e)

  

Python3 中异常的处理