globals() 函数
会以字典类型返回当前位置的全部全局变量
语法
globals()
作用
返回全局变量的字典
实例
1 a=1 2 b=2 3 c=3 4 print(globals()) 5 '''{'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': 6 <_frozen_importlib_external.SourceFileLoader object at 0x00000000020D4358>, '__spec__': 7 None, '__annotations__': {}, '__builtins__': <module 'builtins' (built-in)>, '__file__' 8 '', '__cached__': None, 'a': 1, 'b': 2, 'c': 3}'''