首页 > 代码库 > 多线程
多线程
http://www.cnblogs.com/fnng/p/3670789.html
#coding=utf-8
from time import ctime,sleep
import threading
def music(func):
for i in range(2):
print "I was listen to %s. %s" %(func,ctime())
sleep(3)
def move(func):
for i in range(2):
print "I was at the %s! %s" %(func,ctime())
sleep(5)
threads = []
t1=threading.Thread(target=music,args=(u‘爱情买卖‘,))
threads.append(t1)
t2=threading.Thread(target=move,args=(u‘阿凡达‘,))
threads.append(t2)
if __name__ == ‘__main__‘:
for t in threads:
t.setDaemon(True)
t.start()
t.join()
print "all over %s" %ctime()
来自为知笔记(Wiz)
多线程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。