
Python
文章平均质量分 80
dcye2008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python学习笔记(2)--python 多线程与queue
转载自http://www.cnblogs.com/tqsummer/archive/2011/01/25/1944771.html 要点: python线程: thread和threading模块 同步机制: 锁: thread:Lock对象 threading:RLock对象 条件变量:condition对象 队列:queue原创 2013-05-14 20:34:29 · 441 阅读 · 0 评论 -
python学习笔记(1)--os和os.path模块
1.os.path模块 os.path.abspath(path) Return a normalized absolutized version of the pathname path. On most platforms, this is equivalent to calling the function normpath() as follows: normpath(joi原创 2013-05-14 19:52:13 · 682 阅读 · 0 评论