python[001]:install

1

由于使用环境为 windows(虽然子系统安装了,但是是为了安装基于 python 的进程管理工具,并非使用 python 在 linux 下开发),所以很简单的啦~,这里略过 需要注意的是 pip 的使用

1
2
3
pip install NumPy 
pip install Pandas
pip install Matplotlib

迁移模块

1
2
pip freeze > requirement.txt
pip install -r requirement.txt

这个迁移方式不是很习惯

python闭包写法

1
2
3
4
5
6
7
8
9
10
def func()
return
def func1():
def func():
return 1
return func

func2 = func1()
print(func2)