
Python
如锋
金融IT
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
卷起来,使用Python下载小学阳光学业评价参考答案
算是爬虫入门吧,requests和BeautifulSoup的简单应用。这里下载的是五年级,其他年级链接和ID相应改一下。原创 2022-10-29 11:30:08 · 625 阅读 · 0 评论 -
Python打飞机小游戏
Python编程:从入门到实践》里的打飞机小游戏。Python做游戏比预想中要简单。不太完善,不过也算是不错的模板。原创 2022-10-07 12:57:45 · 449 阅读 · 0 评论 -
《Python编程:从入门到实践》读后感
年少不知Python好 错把Java当做宝原创 2022-07-02 12:37:31 · 802 阅读 · 0 评论 -
更新Python2.7.5到Python2.7.16
Upgrade Python2.7.5 to Python2.7.16 Python has already been installed in Linux by default, but the version is usually not up to date. Install Python 2.7.16 Download from https://www.python.org/ftp/pyt...原创 2019-10-26 11:25:54 · 1571 阅读 · 0 评论 -
Nginx - LDAP Authentication
比Nginx - Basic Authentication稍微高级一点点的LDAP认证。 Install http_auth_request_module sudo ./configure --with-http_stub_status_module --with-http_ssl_module --with-http_auth_request_module sudo make sudo make...原创 2019-10-20 08:30:10 · 1046 阅读 · 0 评论 -
Python基础
发现Python都忘得差不多了,简单复习一下。 Install anaconda conda Input help(input) name = input('what is your name? ') Modules and Imports Can use dir() to check the namespace difference. import math import math as...原创 2019-05-30 13:05:29 · 135 阅读 · 0 评论 -
Anaconda多版本Python切换
安装Anaconda3,就自带了Python3. 这时可以用Conda建一个Python2的env。 conda create --name py2 python=2.7 activate py2 python -V deactivate conda create --name py3 python=3.7 activate py3 python -V C:\Users\pan>cond...原创 2019-09-03 20:14:59 · 667 阅读 · 0 评论 -
指定Python安装包下载地址
有时安装包从pypi.org下载不了,或者网络限制或使用内部仓库。 Pip Configure. Windows: ~\pip\pip.ini Linux: ~.pip\pip.conf [global] index-url= http://mirrors.aliyun.com/pypi/simple/ extra-index-url= https://pypi.org/simple [inst...原创 2019-09-06 21:41:21 · 1186 阅读 · 0 评论