Python基于locals返回作用域字典
英文文檔:
locals()
Update and return a dictionary representing the current local symbol table. Free variables are returned by locals()when it is called in function blocks, but not in class blocks.
返回當前作用域內的局部變量和其值組成的字典
說明:
1. 函數功能返回當前作用域內的局部變量和其值組成的字典,與globals函數類似(返回全局變量)
>>> locals(){’__package__’: None, ’__loader__’: <class ’_frozen_importlib.BuiltinImporter’>, ’__doc__’: None, ’__name__’: ’__main__’, ’__builtins__’: <module ’builtins’ (built-in)>, ’__spec__’: None}>>> a = 1>>> locals() # 多了一個key為a值為1的項{’__package__’: None, ’__loader__’: <class ’_frozen_importlib.BuiltinImporter’>, ’a’: 1, ’__doc__’: None, ’__name__’: ’__main__’, ’__builtins__’: <module ’builtins’ (built-in)>, ’__spec__’: None}
2. 可用于函數內。
>>> def f(): print(’before define a ’) print(locals()) #作用域內無變量 a = 1 print(’after define a’) print(locals()) #作用域內有一個a變量,值為1>>> f<function f at 0x03D40588>>>> f()before define a {} after define a{’a’: 1}
3. 返回的字典集合不能修改。
>>> def f(): print(’before define a ’) print(locals()) # 作用域內無變量 a = 1 print(’after define a’) print(locals()) # 作用域內有一個a變量,值為1 b = locals() print(’b['a']: ’,b[’a’]) b[’a’] = 2 # 修改b[’a’]值 print(’change locals value’) print(’b['a']: ’,b[’a’]) print(’a is ’,a) # a的值未變 >>> f()before define a {}after define a{’a’: 1}b['a']: 1change locals valueb['a']: 2a is 1>>>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。
相關文章:
1. 將properties文件的配置設置為整個Web應用的全局變量實現方法2. 在Vue 中獲取下拉框的文本及選項值操作3. python爬蟲利用代理池更換IP的方法步驟4. springboot用controller跳轉html頁面的實現5. JS算法題解旋轉數組方法示例6. PHP設計模式之迭代器模式Iterator實例分析【對象行為型】7. JavaScript forEach中return失效問題解決方案8. python中pandas.read_csv()函數的深入講解9. Python語言規范之Pylint的詳細用法10. SpringBoot集成SSM、Dubbo、Redis、JSP的案例小結及思路講解
