
python
wen66
这个作者很懒,什么都没留下…
展开
-
python 中文乱码
在写python脚本时, 应该在文件的开头就包含下面这句, 标明文件的编码 [code="java"] #coding=utf-8 print '中文' [/code] 同时把你的脚本文件要存成utf-8编码格式. 关于python中文乱码,可以参考文章:http://happylaoyu.i.sohu.com/blog/view/111505796.htm [code="j...原创 2012-12-08 21:48:55 · 101 阅读 · 0 评论 -
python基础
在进入python命令行后 1. 显示str这个类 [code="java"] >>>help(str) [/code] 2. 用help()进行help自身的帮助 [code="java"] >>>help() [/code] 进入 [code="java"] >help [/code] 进入后, 可以得到各种各样的帮助. modules 可得到当前...原创 2012-12-08 22:39:43 · 102 阅读 · 0 评论 -
python tips
[size=x-large]How to create an enum in Python?[/size] Use a function that dynamically creates a new class [code="python"] def enum(**enums): return type('Enum', (object,), enums) Numbers =...原创 2013-08-30 16:25:01 · 95 阅读 · 0 评论