摘要:
使用template.format(*parameters)函数创建带格式的字符串。 代码如下: #!/usr/bin/env python data = [ (1000, 10), (2000, 17), (2500, 170), (2500, -170), ] # Print the heade 阅读全文
摘要:
通过配置文件来安装所需要的第三方软件包 一、编辑requirements.txt文件,如下: (.venv) huangsiyangdeiMac:projects huangsiyang$ cat requirements.txt delorean==1.0.0 requests==2.18.4 二 阅读全文
摘要:
以下操作在mac系统上执行,Linux系统类似,而Windows的路径有点区别,主要是activate文件是在Scripts下,同时需要先执行set-executionpolicy remotesigned之后,再执行./.venv/Scripts/Activate.ps1 使用命令python - 阅读全文