官方文檔:https://docs.python.org/3/library/exceptions.html 1. 使用try...except... 2. 輸出錯誤信息的方式為: 3. ...
官方文檔: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.