2013年8月13日 星期二

python 取得區域變數 locals() 與全域變數 globals()

locals()
globals()


× locals is read-only, globals is not

>>> x = 1
>>> locals()['x'] = 2
>>> x 
>>> globals()['x'] = 3
>>> x 




Reference :



沒有留言:

張貼留言