Python 中的 globals() 函数 返回一个表示当前全局符号表的字典。此字典包含所有全局 变量 及其当前在程序中可用的值,包括内置函数和 模块。它可用于从函数或方法中访问和修改全局变量。 参数值 此函数不接受任何参数。 返回值 Python 中的 globals() 函数 返回当前全局符号表的字典。 如何在 Python 中使用 globals() 示例 1 返回表示当前全局符号表的字典。 globals() 内置函数 abs() aiter() all() anext() any() ascii() bin() bool() breakpoint() bytearray() bytes() callable() chr() classmethod() compile() complex() delattr() dict() dir() divmod() enumerate() eval() exec() filter() float() format() frozenset() getattr() hasattr() hash() help() hex() id() input() int() isinstance() issubclass() iter() len() list() locals() map() max() memoryview() min() next() object() oct() open() ord() pow() print() property() range() repr() reversed() round() set() setattr() slice() sorted() staticmethod() str() sum() super() tuple() type() vars() zip()