2014年6月9日 星期一

Python set globals variable in module

import my_module
my_module.do_something_with_my_globals(globals())
print globals()

def do_something_with_my_globals(glob): # glob is simply a dict.
    glob["foo"] = "bar"




References :
ython: How to make a cross-module variable? - Stack Overflow

沒有留言:

張貼留言