这是我的代码:
import time
GLO = time.time()
def Test():
print GLO
temp = time.time();
print temp
GLO = temp
Test()
Traceback(最近一次调用最后一次):文件“test.py”,第 11 行,在 Test() 文件“test.py”,第 6 行,在 Test print GLO UnboundLocalError: local variable 'GLO' referenced before assignment
添加时出现错误GLO = temp
,如果我评论它,函数可以成功执行,为什么?
我该如何设置GLO = temp
?