摘要:
最近在使用Fastapi编写web接口,涉及mysql数据库了记录一下使用SQLAlcheme: https://www.osgeo.cn/sqlalchemy/orm/tutorial.htmlfrom sqlalchemy import create_enginefrom sqlalchemy. 阅读全文
摘要:
try: a = 10/0 #这里会报错,try会异常退出,然后走到 except捕获异常 print(a) #不会执行的 except BaseException as e: print(e) else: print('只有try正常执行了才会执行else') #try异常后,else不会执行 f 阅读全文