python web03-08-多线程共享全局变量-2(线程传递变量方法)
调用线程时,传递变量到函数中的方法 : threading.Thread(target=test1, args=(g_nums,))
import threading
import time
def test1(temp):
temp.append(33)
print("-----in test1 temp=%s----" % str(temp
2022-06-18 17:44:32
调用线程时,传递变量到函数中的方法 : threading.Thread(target=test1, args=(g_nums,))
import threading
import time
def test1(temp):
temp.append(33)
print("-----in test1 temp=%s----" % str(temp