Python基础
- https://wiki.python.org/moin/BeginnersGuide
- https://docs.python.org/3/
- The Python Tutorial — Python 3.11.2 documentation
- https://docs.python.org/3/library/index.html
- https://docs.python.org/3/using/index.html
Python管理
localhost:~ seveniruby$ python2 -V
Python 2.7.16
localhost:~ seveniruby$ python3 -V
Python 3.7.0
localhost:~ seveniruby$ export PATH=/Users/seveniruby/.pyenv/versions/2.7.14/bin/:$PATH
localhost:~ seveniruby$ python -V
Python 2.7.14
localhost:~ seveniruby$ export PATH=${PATH#*:}
localhost:~ seveniruby$ python -V
Python 3.7.0
模块
curl http://www.baidu.com > baidu.html
python2 -m CGIHTTPServer
#python3 -m http.server
虚拟环境
IDE
python的国内依赖库镜像
脚本
单测
周末实战准备
- 学习python的语法与数据结构
- 熟悉常用的库
- 学习下unittest