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
上一篇:Koa


下一篇:【MySQL存储过程和函数】存储过程定义变量与用户变量详解