线程化中的类型错误。函数采用x位置参数,但给出了y

TypeError in Threading. function takes x positional argument but y were given(线程化中的类型错误。函数采用x位置参数,但给出了y)
本文介绍了线程化中的类型错误。函数采用x位置参数,但给出了y的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在使用Python。我有一个start-function,它从消息中获取一个字符串。我想为每封邮件启动线程。

目前的帖子应该打印出我的消息,如下所示:

def startSuggestworker(message):
    print(message)

def start():
    while True:
        response = queue.receive_messages()
        try:
            message = response.pop()
            start_keyword = message.body
            t = threading.Thread(target=startSuggestworker, args = (start_keyword))
            t.start()
            message.delete()
        except IndexError:
            print("Messages empty")
            sleep(150)

start()

目前我得到一个TypeError,我不明白为什么。例外消息如下:

Exception in thread Thread-1:
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/threading.py", line 914, in _bootstrap_inner
    self.run()
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/threading.py", line 862, in run
    self._target(*self._args, **self._kwargs)
TypeError: startSuggestworker() takes 1 positional argument but y were given

*y=我的字符串长度

我做错了什么?

推荐答案

argsargskwarg需要一个迭代数,而该迭代数中的每个元素都被传递给目标函数。

由于您提供的是args的字符串: t = threading.Thread(target=startSuggestworker, args=(start_keyword))

每个字符都作为单独的参数传递给startSuggestworker

相反,您应该提供args元组:

t = threading.Thread(target=startSuggestworker, args=(start_keyword,))
#                                                                  ^ note the comma

这篇关于线程化中的类型错误。函数采用x位置参数,但给出了y的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)