Python常识¶
# The Zen of Python, by Tim Peters
python -c "import this"
- 不要使用 Windows 应用商店的 Python 版本。(该版本的 Python 存在一些限制。)
代码组织¶
SoftwareName/
LICENSE.txt
README.txt
setup.py
software_name/
__init__.py
script.py
another_script.py
__init__.py
通常定义__version__
字符串。
包、包管理工具和虚拟环境¶
- 使用清华大学Pypi镜像。
https://pypi.tuna.tsinghua.edu.cn/simple
- 使用
poetry
作为主力的包管理工具。 pip
、virtualenv
、poetry
和pipenv
另见于包管理工具笔记。