globals() 返回包含所有全局变量的字典,可能与您正在查找的字典相似。
globals()
globals() > {'__builtins__': ... } type(globals()) > <class 'dict'>
你也可能对
dir()
locals()