个人成长
文章平均质量分 67
AyanoSama
这个作者很懒,什么都没留下…
展开
-
python thread模块使用心得(包括lock锁)
#coding=utf8 import thread from time import sleep,ctime def loop0(): print "loop0 start at:",ctime() sleep(4) print "loop0 end at",ctime() def loop1(lock):# print "loop1start at:",ctime() sle原创 2014-11-03 13:16:00 · 467 阅读 · 0 评论 -
python threading模块的使用
threading.Thread()比较提倡的使用方法是: 创建自己的M原创 2014-11-03 14:48:18 · 230 阅读 · 0 评论