locals()

返回一个字典对象。收集并返回局部变量。
可以用在函数中,用来收集局部变量。

>>> def f():
... a = 'tom'
... print(locals())
...
>>> f()
{'a': 'tom'}
05-19 22:39