当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy lookfor用法及代码示例


本文简要介绍 python 语言中 numpy.lookfor 的用法。

用法:

numpy.lookfor(what, module=None, import_modules=True, regenerate=False, output=None)

对文档字符串进行关键字搜索。

将显示与搜索匹配的对象列表,并按相关性排序。所有给定的关键字都需要在文档字符串中找到才能作为结果返回,但顺序无关紧要。

参数

what str

包含要查找的单词的字符串。

module str 或列表,可选

要通过其文档字符串的模块的名称。

import_modules 布尔型,可选

是否在包中导入sub-modules。默认为真。

regenerate 布尔型,可选

是否重新生成文档字符串缓存。默认为假。

output file-like,可选

File-like 将输出写入的对象。如果省略,请使用寻呼机。

注意

相关性只能通过检查关键字是否出现在函数名中、文档字符串的开头等来粗略地确定。

例子

>>> np.lookfor('binary representation') 
Search results for 'binary representation'
------------------------------------------
numpy.binary_repr
    Return the binary representation of the input number as a string.
numpy.core.setup_common.long_double_representation
    Given a binary dump as given by GNU od -b, look for long double
numpy.base_repr
    Return a string representation of a number in the given base system.
...

相关用法


注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.lookfor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。