2

为什么创建/修改 locals() 的成员在函数中不起作用?

Python 2.5 (release25-maint, Jul 20 2008, 20:47:25)
[GCC 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)] on linux2
Type "help", "copyright", "credits" or "license" for more information.

>>> # Here's an example of what I expect to be possible in a function:
>>> a = 1
>>> locals()["a"] = 2
>>> print a
2

>>> # ...and here's what actually happens:
>>> def foo():
...  b = 3
...  locals()["b"] = 4
...  print b
...
>>> foo()
3
4

2 回答 2

7

为什么会呢?它旨在返回一个表示,并且从未打算用于编辑本地人。正如文档警告的那样,它永远不能保证作为这样的工具工作。

于 2009-03-26T17:15:32.733 回答
3

locals() 返回命名空间的副本(与 globals() 的作用相反)。这意味着您对 locals() 返回的字典执行的任何更改都将无效。在示例 4.12中深入了解 Python 。

于 2009-03-26T17:40:19.117 回答