以字典类型返回当前位置的全部局部变量
locals()
返回字典类型的局部变量(用于函数)
1 def func(): 2 a=1 3 b=2 4 print(locals()) 5 func() # {'a': 1, 'b': 2}