python web03-线程-07-线程共享全局变量

python web03-线程-07-线程共享全局变量

import threading
import time

# 定义一个全局变量
g_num = 100


def test1():
    global g_num
    g_num += 1
    print("-----in test1 g_num=%d----" % g_num)


def 
上一篇:清北学堂入学测试P4751 H’s problem(h)


下一篇:选择排序