Python 中的 help() 函数 是一个用于显示有关特定对象、模块、函数、类或方法的信息的内置函数。它可以提供如何使用指定对象以及其参数和功能的结构化且详细的说明。此函数通常用于探索和了解各种 Python 对象 及其功能。 参数值 参数 说明 object 一个可选参数,它指定要检索帮助信息的 object。如果提供,将显示指定 object 的帮助信息。 返回值 help() 函数可以返回 None 或启动交互式帮助会话。 如何在 Python 中使用 help() 示例 1 help() 函数用于获取有关 Python 中特定对象或模块的信息。 help(print) 示例 2 它显示有关对象或模块的文档字符串和用法等信息。 help(list) 示例 3 您还可以使用 help() 获取有关用户定义的 函数 或 类 的信息。 help(MyCustomClass) 内置函数 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() globals() hasattr() hash() 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()