如何在 Jupyter Notebook 上查看内置函数的文档?
How to see documentation of inbuilt functions on Jupyter Notebook?
我最近研究了如何在 Jupyter Notebook
的 cell
中查找任何内置 python library's
函数的文档。对我如何访问文档有什么建议吗?我知道键盘快捷键是 shift + tab
,使用 4 次 shift + tab
,会弹出整个文档和示例。我只是想知道通常的方式,除了捷径。
文档来自 Python 代码中的文档字符串。
您可以通过调用 help 和 __doc__
属性 returns 字符串来查看它。
以内置filter
为例:
# Displays the documentation for filter function
help(filter)
# Obtains the string of the documentation.
docstring = filter.__doc__
我最近研究了如何在 Jupyter Notebook
的 cell
中查找任何内置 python library's
函数的文档。对我如何访问文档有什么建议吗?我知道键盘快捷键是 shift + tab
,使用 4 次 shift + tab
,会弹出整个文档和示例。我只是想知道通常的方式,除了捷径。
文档来自 Python 代码中的文档字符串。
您可以通过调用 help 和 __doc__
属性 returns 字符串来查看它。
以内置filter
为例:
# Displays the documentation for filter function
help(filter)
# Obtains the string of the documentation.
docstring = filter.__doc__