国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

Python基于locals返回作用域字典

瀏覽:33日期:2022-07-08 08:36:54

英文文檔:

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.

返回當(dāng)前作用域內(nèi)的局部變量和其值組成的字典

說明:

1. 函數(shù)功能返回當(dāng)前作用域內(nèi)的局部變量和其值組成的字典,與globals函數(shù)類似(返回全局變量)

>>> locals(){’__package__’: None, ’__loader__’: <class ’_frozen_importlib.BuiltinImporter’>, ’__doc__’: None, ’__name__’: ’__main__’, ’__builtins__’: <module ’builtins’ (built-in)>, ’__spec__’: None}>>> a = 1>>> locals() # 多了一個(gè)key為a值為1的項(xiàng){’__package__’: None, ’__loader__’: <class ’_frozen_importlib.BuiltinImporter’>, ’a’: 1, ’__doc__’: None, ’__name__’: ’__main__’, ’__builtins__’: <module ’builtins’ (built-in)>, ’__spec__’: None}

2. 可用于函數(shù)內(nèi)。

>>> def f(): print(’before define a ’) print(locals()) #作用域內(nèi)無變量 a = 1 print(’after define a’) print(locals()) #作用域內(nèi)有一個(gè)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()) # 作用域內(nèi)無變量 a = 1 print(’after define a’) print(locals()) # 作用域內(nèi)有一個(gè)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>>>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 霍林郭勒市| 巨鹿县| 南开区| 栾川县| 普安县| 察雅县| 会理县| 东城区| 古浪县| 黔江区| 石狮市| 沐川县| 神池县| 图片| 大新县| 葵青区| 南皮县| 黎川县| 磐石市| 北安市| 龙口市| 裕民县| 井陉县| 峨眉山市| 临海市| 隆德县| 兴安县| 麦盖提县| 泰顺县| 五华县| 彩票| 白山市| 江北区| 富源县| 成安县| 灵丘县| 同仁县| 游戏| 三原县| 元朗区| 玉门市|