
python
zealotds
初来乍到
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【转】Python 常用转换函数
[url=http://blogold.chinaunix.net/u3/93470/showart_1871767.html]原文 http://blogold.chinaunix.net/u3/93470/showart_1871767.html[/url] [code="python"]def bin(x): result = '' x = int(x) while ...原创 2011-05-11 21:24:22 · 179 阅读 · 0 评论 -
My Python Tips 1: chdir, load module
python, chdir, sys.path, working directory, load module [code="python"]# Directory relative ----------------- # current working directory os.getcwd() # getcwd UNICODE version os.getcwu() # ...2011-05-12 10:44:41 · 129 阅读 · 0 评论