2014年1月21日

python 多线程 笔记(一)

摘要: #coding=utf-8import threading from time import sleep, ctime loops = [4,2] def loop(nloop, nsec): print 'start loop', nloop, 'at:', ctime() sleep(nsec) print 'loop', nloop, 'done at:', ctime() def main(): print 'starting at:', ctime() threads = [] nloops = rang 阅读全文
posted @ 2014-01-21 10:54 卡西大人 阅读(155) 评论(0) 推荐(0) 编辑