标签:logs 下载 com images 分享 路径 color 字符 http
str(字符串)、int(数值)→ 变量 → 列表[ a,b ] → 字典{a:b} → 函数def a(); → 类class a();
查看python文件路径:
import sys
import pprint
pprint.pprint(sys.path)
windows设置Python环境变量:主机→【属性】→【高级系统设置】→【高级】→【环境变量】→【path】
pip——管理Python工具,提供对Python包的查找、下载、安装、卸载功能
查看某包(已装):pip show --files SOMEPACKAGE
安装:pip install SOMEPACKAGE
卸载:pip uninstall SOMEPACKAGE
查看待更新包:pip list --outdate
帮助文件:pip --help
标签:logs 下载 com images 分享 路径 color 字符 http
原文地址:http://www.cnblogs.com/anglesheepbobo/p/7812182.html