提问人:Jim 提问时间:5/28/2023 最后编辑:Jim 更新时间:5/28/2023 访问量:22
访问 python 装饰器的本地范围内的变量 [duplicate]
Accessing variables in the local scope of a python decorator [duplicate]
问:
考虑:
def g(value):
def f():
return value
return f
x = g(3)
x() # prints 3
在示例中给出,返回的闭包来自 ,有没有办法在不调用的情况下检查 的值?x
g(3)
value
x()
答:
0赞
juanpa.arrivillaga
5/28/2023
#1
是的,您可以直接在 Python 中反省函数的闭包:
>>> def g(value):
... def f():
... return value
... return f
...
>>> func = g(42)
>>> func.__closure__
(<cell at 0x1077b5a80: int object at 0x1075b4618>,)
然后,如果你想要这个值:
>>> cell = func.__closure__[0]
>>> cell.cell_contents
42
评论
return f
g