0.1. Window 下 Python
多版本问题
- python 2 使用 python
- python 3 使用 py
- python x.y 使用 py -x.y
0.2. 项目虚拟运行环境
1 2 3 4 5 6 7 8
| py -x.y -m venv env
.\env\Scripts\activate
python -m pip install --upgrade pip
deactivate
|
0.3. 搭建本地 pypi 服务器
pypi-server
1 2 3 4 5 6
| pip install pypiserver [passlib,watchdog]
mkdir packages
pypi-server -p 8080 --fallback-url https://pypi.tuna.tsinghua.edu.cn/simple -d packages packages
|
1
| pip config set global.index-url http://localhost:8080/simple
|
1. python 内存
1.1. 变量 id() 相等,即 a is b
- 整数范围在[-5,256]的变量,即小整数
- 没有空格等特殊字符的字符串,应用 账号
1.2. gc(garbage
collection)垃圾回收机制
- 引用计数机制 sys.getrefcount(obj) 获取引用计数 增加引用计数 对象赋值
对象作为形参 对象计入到列表 减少引用计数 从列表删除 del obj
- gc.disable() 关闭垃圾回收机制,测试使用,开发不要用
gc.get_threshold() 获取gc模块中自动执行垃圾回收的频率 gc.get_count()
获取当店自动执行垃圾回收的计算器 gc.set_threshold()
设置自动执行垃圾回收的频率 gc.collect() 手动调用
- 隔代回收机制 相互引用。。。
1.3. 内置属性
dict 类属性 由类属性构成的字典 doc
类文档 name 类名 module 类所在模块
bases 类的父类构成元素,由所有父类组成的元组
getattribute 属性拦截器
1.4. 内建函数
range(start=0,end,step=1) map(function,iterable)迭代器处理可迭代对象
filter(function,iterable) function 返回true保留
functools.reduce(function,iterable)累function处理 sorted() reverse为ture
则从大到小,自定义对象需要指定key=lambda obj:obj.属性 lambda x:x*2