python-如何在Jupyter Notebook上查看内置函数的文档?
作者:互联网
我最近研究了如何在Jupyter Notebook单元中查找任何内置python库功能的文档.有什么建议可以访问文档吗?我知道键盘快捷键是shift标签,并且使用4次shift标签,弹出带有示例的整个文档.我只是想知道除了快捷方式之外的通常方式.
解决方法:
该文档来自Python代码中的文档字符串.
您可以通过调用help看到它,并且__doc__属性返回字符串.
以内置过滤器为例:
# Displays the documentation for filter function
help(filter)
# Obtains the string of the documentation.
docstring = filter.__doc__
标签:jupyter-notebook,ipython-notebook,python 来源: https://codeday.me/bug/20191110/2014511.html