编程语言
首页 > 编程语言> > python web03-08-多线程共享全局变量-2(线程传递变量方法)

python web03-08-多线程共享全局变量-2(线程传递变量方法)

作者:互联网

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

标签:test1,temp,python,08,线程,web03,多线程
来源: https://blog.csdn.net/lj1986817902/article/details/122606398