如何在Jupyter Notebook上查看内置函数的文档?

时间:2017-12-04 22:00:19

标签: python jupyter-notebook ipython-notebook

我最近研究过如何在python library's cell内查找任何内置Jupyter Notebook函数的文档。有什么建议我如何访问文档?我知道键盘快捷键是shift + tab,而{4} shift + tab,会弹出整个文档和示例。我只是想知道通常的方式,除了捷径。

1 个答案:

答案 0 :(得分:2)

文档来自Python代码中的docstring。

您可以通过调用help来查看,__doc__属性返回字符串。

以内置filter为例:

# Displays the documentation for filter function
help(filter)
# Obtains the string of the documentation.
docstring = filter.__doc__