1.python 内置函数:local(),无参数——以字典类型返回当前位置所有的局部变量。 def Foo(arg): n=1; print(local()); f=Foo(3) 结果:{‘n’:1,‘arg’:3}.