You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def _init(): # 初始化
|
|
global _global_dict
|
|
_global_dict = {}
|
|
|
|
|
|
def set_value(key, value):
|
|
# 定义一个全局变量
|
|
_global_dict[key] = value
|
|
|
|
|
|
def get_value(key):
|
|
# 获得一个全局变量,不存在则提示读取对应变量失败
|
|
try:
|
|
return _global_dict[key]
|
|
except:
|
|
print('读取'+key+'失败\r\n')
|