常用在处理sql执行的时候,检查sql执行是否异常,输出异常sql: try:#执行代码 xxxx xxxxx except Exception as e : #exception捕捉所有的异常 pass else: 没有出错 finally: 不管你有没有出异常都会执行它例如