gpt4 book ai didi

Python:如何组合两个函数的返回值并使用线程将它们附加到列表中?

转载 作者:行者123 更新时间:2023-11-30 22:26:10 25 4
gpt4 key购买 nike

我是线程新手,在使用线程打印列表内的值以允许两个函数同时工作并将结果附加到列表时遇到异常结果。下面是我的代码:

import threading
def func1():

return "HTML"

def func2():

return "IS FUN"

threadslist = []

thread1 = threading.Thread(target=func1)
thread2 = threading.Thread(target=func2)

x = thread1
y = thread2

x.start()
y.start()

threadslist.append(x)
threadslist.append(y)

print(threadslist)

这是列表的结果:

[<Thread(Thread-1, stopped 1076)>, <Thread(Thread-2, stopped 7948)>]

为什么它存储 Threads 对象而不是存储 ['HTML', 'IS FUN'] ?

最佳答案

import threading
threading_list = []
def func1():
threading_list.append("HTML")

def func2():
threading_list.append("IS FUN")

thread1 = threading.Thread(target=func1)
thread2 = threading.Thread(target=func2)

x = thread1
y = thread2

x.start()
y.start()

print(threading_list)

关于Python:如何组合两个函数的返回值并使用线程将它们附加到列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47310136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com