将参数传递给 Python 线程时出现类型错误

朝鲜民主主义人民共和国

我正在尝试编写一个简单的线程程序。当我不尝试将任何变量传递给目标函数时,它运行良好。

import threading
import time
import datetime

def my_function():
    thread_start_time = str(datetime.datetime.now())
    thread_start_time_remove_microseconds = thread_start_time[:19]

    print("\n\nThread Execution Start Time: ", thread_start_time_remove_microseconds)
    print("I am being printed by mythread. Sleeping for 5 seconds. Main thread will wait till I finish")
    time.sleep(5)

    thread_end_time = str(datetime.datetime.now())
    thread_end_time_remove_microseconds = thread_end_time[:19]

    print("Thread Execution End Time: ", thread_end_time_remove_microseconds)


def main():
    mythread= threading.Thread(target=my_function, name="thread1")
    mythread.start()

    print("\n\n","=" * 31,"I am printed by the main thread","=" * 31,"\n\n")


if __name__ == "__main__":
    main()

结果是:

Thread Execution Start Time: 

 2018-09-09 17:02:46
 =============================== I am printed by the main thread =============================== 


I am being printed by mythread. Sleeping for 5 seconds. Main thread will wait till I finish
Thread Execution End Time:  2018-09-09 17:02:51

Process finished with exit code 0

但是,当我尝试将变量传递给函数时,出现以下错误:导入线程导入时间导入日期时间

def my_function(one_variable):
    print(one_variable)
    thread_start_time = str(datetime.datetime.now())
    thread_start_time_remove_microseconds = thread_start_time[:19]

    print("\n\nThread Execution Start Time: ", thread_start_time_remove_microseconds)
    print("I am being printed by mythread. Sleeping for 5 seconds. Main thread will wait till I finish")
    time.sleep(5)

    thread_end_time = str(datetime.datetime.now())
    thread_end_time_remove_microseconds = thread_end_time[:19]

    print("Thread Execution End Time: ", thread_end_time_remove_microseconds)


def main():
    mythread= threading.Thread(target=my_function, name="thread1", args=("This is one variable from main"))
    mythread.start()

    print("\n\n","=" * 31,"I am printed by the main thread","=" * 31,"\n\n")


if __name__ == "__main__":
    main()

结果是:

=============================== I am printed by the main thread =============================== 


Exception in thread thread1:
Traceback (most recent call last):
  File "C:\Users\dparvez\AppData\Local\Programs\Python\Python36-32\lib\threading.py", line 916, in _bootstrap_inner
    self.run()
  File "C:\Users\dparvez\AppData\Local\Programs\Python\Python36-32\lib\threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
TypeError: my_function() takes 1 positional argument but 30 were given


Process finished with exit code 0

有人可以帮忙解释为什么我收到这个错误。

利奥

你需要一个逗号来创建args一个元组,像这样:

mythread= threading.Thread(
    target=my_function
    name="thread1",
    args=("This is one variable from main",))

这是因为 threading.Thread() 期望 args 是一些可迭代的并枚举它以将所有 args 传递给您的函数。

表达式 ("string") 就等于 "string" - 它是一个可迭代的,结果是 ("s", "t", "r", "i", "n", "g")。不是你想要的。要告诉 Python ("string") 是一个单元素元组而不是带括号的表达式,请执行 ("string",)。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章