这段python代码有问题,请大神帮我看下

importQueuefromthreadingimportThreaddefget(nums):whileTrue:ifmyqueue.empty()==False:p... import Queue
from threading import Thread

def get(nums):
while True:
if myqueue.empty()==False:
print 'Thread %d : %s' %(nums, myqueue.get())
else:
break

def main():
thread=[]
nums=5
for a in xrange(5):
thread.append(Thread(target=get, args=(a+1)))
for a in thread:
a.setDaemon(True)
a.start()

if __name__ == "__main__":
global myqueue
myqueue=Queue.Queue()
list=[]
for a in xrange(100):
list.append(str(a+1))
for a in list:
myqueue.put(a)
main()

-------------------------------------------------------------------------
Traceback (most recent call last):
File "D:\software\python2.7.4\lib\threading.py", line 810, in __bootstrap_inner
self.run()
File "D:\software\python2.7.4\lib\threading.py", line 763, in run
self.__target(*self.__args, **self.__kwargs)
TypeError: get() argument after * must be a sequence, not int

该怎么改??求指教
展开
 我来答
matlab2000
推荐于2017-11-26 · TA获得超过2323个赞
知道大有可为答主
回答量:1678
采纳率:100%
帮助的人:1051万
展开全部
thread.append(Thread(target=get, args=(a+1,)))

加个逗号表示这是一个元素的列表?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式