本文简要介绍 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. ...
相关用法
- Python numpy logaddexp用法及代码示例
- Python numpy log10用法及代码示例
- Python numpy load用法及代码示例
- Python numpy logspace用法及代码示例
- Python numpy log用法及代码示例
- Python numpy logaddexp2用法及代码示例
- Python numpy log2用法及代码示例
- Python numpy logical_xor用法及代码示例
- Python numpy log1p用法及代码示例
- Python numpy logical_and用法及代码示例
- Python numpy loadtxt用法及代码示例
- Python numpy logical_not用法及代码示例
- Python numpy logical_or用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy linalg.svd用法及代码示例
- Python numpy laguerre.lagone用法及代码示例
- Python numpy linalg.pinv用法及代码示例
- Python numpy linalg.eigh用法及代码示例
- Python numpy linalg.tensorinv用法及代码示例
- Python numpy laguerre.lagdomain用法及代码示例
- Python numpy laguerre.lagzero用法及代码示例
- Python numpy legendre.legmulx用法及代码示例
- Python numpy less用法及代码示例
- Python numpy linalg.LinAlgError用法及代码示例
- Python numpy linalg.matrix_rank用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.lookfor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。