摘要: 1 为什么要编写注释“Code is more often read than written.”— Guido Van Rossum“It doesn’t matter how good your software is, because if the documentation is not good enough, people will not use it.“— Daniele Proc... 阅读全文
posted @ 2020-03-11 22:26 alpha1e0 阅读(6396) 评论(0) 推荐(0)
摘要: 1 背景python开发的时候,尤其是多个项目开发的时候,经常会遇到以下两个问题:不同项目使用了不同版本的python不同项目的第三方依赖不一样,例如一个依赖于 xxx-1.0.0,另一个依赖于xxx-1.2.0为了解决以上问题,需要引入版本管理和环境管理工具,前者用于在一台机器上实现安装多个版本的python,后者实现对每个项目工程创建虚拟环境实现每个项目不同依赖。python有众多的版本,不同... 阅读全文
posted @ 2020-03-09 23:14 alpha1e0 阅读(1181) 评论(0) 推荐(0)