会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
super-sos
博客园
首页
新随笔
管理
2017年3月20日
python笔记-8(线程,进程,协程,io多路复用)
摘要: 1 import threading,time 2 3 def task(args): 4 time.sleep(1) 5 print(args) 6 7 for i in range(20): 8 t = threading.Thread(target=task,args=[i,]) 9 t.st
阅读全文
posted @ 2017-03-20 14:04 super-sos
阅读(190)
评论(0)
推荐(0)
编辑