码迷,mamicode.com
首页 > 编程语言 > 详细

Python - Exceptions

时间:2016-09-07 22:23:57      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

官方文档:https://docs.python.org/3/library/exceptions.html

 

1. 使用try...except...

2. 输出错误信息的方式为:

try:
    cursor.execute(sql)
    db.commit()
except Exception as inst:
    print(inst.args)
    db.rollback()

3. 

 

Python - Exceptions

标签:

原文地址:http://www.cnblogs.com/qijiage/p/5850999.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!