try:
raise Exception("AAAA", "BBB")
except Exception as e:
print(e) # ('AAAA', 'BBB')
print(type(e)) # <class 'Exception'>
print(e.args) # ('AAAA', 'BBB')
print(type(e.args)) # <class 'tuple'>
try:
raise Exception("AAAA", "BBB")
except Exception as e:
print(e) # ('AAAA', 'BBB')
print(type(e)) # <class 'Exception'>
print(e.args) # ('AAAA', 'BBB')
print(type(e.args)) # <class 'tuple'>
本文标题:异常
本文链接:https://www.haomeiwen.com/subject/nlrogctx.html
网友评论