Here is my code:
import time
GLO = time.time()
def Test():
print GLO
temp = time.time();
print temp
GLO = temp
Test()
Traceback (most recent call last): File "test.py", line 11, in Test() File "test.py", line 6, in Test print GLO UnboundLocalError: local variable 'GLO' referenced before assignment
the error occurred when I add the GLO = temp
, if I comment it, the function could be execute successfully, why?
How can I set GLO = temp
?