码迷,mamicode.com
首页 > 编程语言 > 详细

Python多线程,threading的用法

时间:2015-04-18 11:29:36      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

虫师的文章:

 

需要注意的是:

threads = [ ]

t1 = threading.Thread(target=music,args=(u‘爱情买卖‘,))

threads.append(t1)

t2 = threading.Thread(target=move,args=(u‘阿凡达‘,))

threads.append(t2)

上面的 args = 的是元组而不是简单的括号。。。

 

链接为:

www.cnblogs.com/fnng/p/3670789.html

www.cnblogs.com/fnng/p/3691053.html

Python多线程,threading的用法

标签:

原文地址:http://www.cnblogs.com/Mellcap/p/4437007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!