摘要: Treading用于提供线程相关的操作,线程是应用程序中工作的最小单元 #!/usr/bin/env python # coding:utf-8 import threading import time def show(arg): time.sleep(1) print 'thread'+str(arg) for i in range(10): t = ... 阅读全文
posted @ 2016-01-08 00:01 曹小贱 阅读(191) 评论(0) 推荐(0) 编辑