Fork me on GitHub

[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.

Note: The contents of this dictionary should not be modified; changes may not affect the values of local and free variables used by the interpreter.

 

 

内置函数locals返回的是当前状态的本地命名空间, 应该当作只读字典处理, 写入会有意外发生.

在函数中, 或者其他局部变量产生的情况下, 对其的更改可能无法保存.

1
2
3
4
5
6
7
8
9
10
11
12
13
def f():
    x = 10
    lc = locals()
    lc['x'] = 20
    # 'x'->20 remains on dictionary before locals() is called
    print lc
    # {'x': 20}                
    locals()
    # locals dictionary is refreshed in the above call to locals()
    print lc
    # {'x': 10, 'lc': {...}}    
 
f()

  

 

posted @   [sigai]  阅读(341)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示