1. 查看Python
help('modules')
2. python安装模块
3. python, 文件名,文件路径
给定完整的文件名,dirname得到路径名,basename得到文件名
import os
p = os.getcwd()
full = os.path.join(p, 'test.txt')
os.path.dirname(full) -得到p
os.path.basename(full) -得到test.txt
4. jupyter notebook
windows竟然没法使用jupyter notebook进行运行,只能当编辑器用,负责的解决方案,算了吧。
安装,pip install jupyter notebook即可。