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