本函数更新并返回当前系统可以使用局部符号表,使用字典表示。
例子:
#locals() class Foo: def __init__(self): x = 100 y = 200 l = locals() print(l) foo = Foo()
结果输出如下:
{‘self‘: <__main__.Foo object at 0x0228F7F0>, ‘x‘: 100, ‘y‘: 200}
蔡军生 QQ:9073204 深圳
原文地址:http://blog.csdn.net/caimouse/article/details/42925781