
Python
red98
这个作者很懒,什么都没留下…
展开
-
PEP8: Style Guide for Python Code
PEP8链接原创 2017-08-10 06:51:21 · 478 阅读 · 0 评论 -
【windows】PyCharm集成pylint
PyCharm集成PylintPylint 安装 (python版本2.7)PyCharm 设置 (PyCharm4.5)Pylint执行Pylint 安装安装完成显示 Pylint安装后位置:C:\Python27\Scripts\pylint.exePyCharm 设置File -> Settings -> tools -> Exterm...原创 2018-06-17 10:15:27 · 1301 阅读 · 0 评论 -
easy_install和pip
easy_install和pip都可以用来安装包,pip是easy_install改进版,老的版本只有easy_install。总之用pip就好了。install: https://pip.pypa.io/en/stable/installing/user guide: https://pip.pypa.io/en/stable/user_guide/...原创 2019-05-06 11:29:27 · 743 阅读 · 0 评论 -
WSGI
WSGI(the Web Server Gateway Interface): 它描述了Web服务器如何与Web应用程序通信,以及如何将Web应用程序链接在一起以处理一个请求。WSGI的Python描述在PEP 3333.WSGI介绍...原创 2019-05-07 16:07:01 · 302 阅读 · 0 评论 -
Python code 0627
import getoptimport systargetDay = [0, 1, 2, 4, 7, 15]def showAction(actions): for i in range(len(actions)): print("\nDay %d : " % (i+1)), for j in range(len(actions[i])): ...原创 2019-06-27 11:16:45 · 154 阅读 · 0 评论