Python 中的 dir() 函数 返回指定对象的有效属性和方法列表。它可以在没有参数的情况下使用,以列出当前作用域中的名称,或以对象作为参数来列出该对象的属性和方法。 参数值 参数 说明 object 表示要列出其属性的对象的可选参数。如果没有提供,则返回当前局部作用域中的名称列表。 返回值 dir() 函数返回对象的属性名称 (字符串) 列表。 如何在 Python 中使用 dir() 示例 1 dir() 函数返回当前局部作用域或指定对象作用域中的名称列表。 dir() 示例 2 dir() 函数还可用于 模块,以列出该模块中可用的所有 函数 和属性。 dir(math) 示例 3 你还可以对 对象 使用 dir() 函数,以查看该对象的所有方法和属性。 dir(list) 内置函数 abs() aiter() all() anext() any() ascii() bin() bool() breakpoint() bytearray() bytes() callable() chr() classmethod() compile() complex() delattr() dict() divmod() enumerate() eval() exec() filter() float() format() frozenset() getattr() globals() 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()