python 学习资源总结
Python Tips Beautiful Soup
许多值得注意和学习的python编程技巧的总结
http://book.pythontips.com/en/latest/index.html
Beautiful Soup 4.2.0 中文文档, 用于解析网页的库
https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/
档值得收藏的Python小技巧:这17个骚操作你都OK吗?
https://mp.weixin.qq.com/s/xR0dilj9AYw-I3iECmdWGw
Python Cookbook 3rd Edition Documentation
https://python3-cookbook.readthedocs.io/zh_CN/latest/index.html
打印当前python 的安装包位置
python3:
python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
python2:
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"