原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.lookfor.html
校对:(虚位以待)
numpy.
lookfor
(what, module=None, import_modules=True, regenerate=False, output=None)[source]在docstrings上执行关键字搜索。
将显示与搜索匹配的对象的列表,并按相关性排序。所有给定的关键字都需要在文档字符串中找到,以便作为结果返回,但顺序并不重要。
参数: | 什么:str
模块:str或list,可选
import_modules:bool,可选
重新生成:bool,可选
输出:类文件,可选
|
---|
笔记
通过检查关键字是否出现在函数名称中,在文档字符串的开始处等,大致确定相关性。
例子
>>> 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.
...