摘要:
在交互式解释器中输入 import this 就会显示 Tim Peters 的 The Zen of Python 1 >>> import this 2 The Zen of Python, by Tim Peters 3 4 Beautiful is better than ugly. 5 E 阅读全文
摘要:
创建引擎 from sqlalchemy import create_engine engine = create_engine("sqlite://", echo=True) echo=True 表示将输出log 声明模型 from typing import List from typing i 阅读全文