如何在python help()内置函数结果中搜索某些单词?

时间:2017-12-27 13:28:13

标签: python docstring

有时我需要在我安装的一些python库文档中搜索一些东西,并且我总是使用help()内置函数但是我想知道是否有一些方法可以在这个内容中搜索甚至更好,没有需要打开一个python终端。我真的想知道一些干净的方法(基于linux),避免管道或类似我已经知道的事情。有一些图书馆或外部有用与我们分享?

1 个答案:

答案 0 :(得分:0)

在shell中:

pydoc modulename | grep the-word

实施例

$ pydoc os | grep chmod
chmod(...)
    chmod(path, mode)
fchmod(...)
    fchmod(fd, mode)