numpy.lookfor #
- 麻木的。Lookfor (什么, module = None , import_modules = True , regenerate = False , output = None ) [来源] #
对文档字符串进行关键字搜索。
将显示与搜索匹配的对象列表,并按相关性排序。所有给定的关键字都需要在文档字符串中找到才能作为结果返回,但顺序并不重要。
- 参数:
- 什么str
包含要查找的单词的字符串。
- 模块str 或 list,可选
要查看其文档字符串的模块的名称。
- import_modules布尔值,可选
是否导入包中的子模块。默认为 True。
- 重新生成布尔值,可选
是否重新生成文档字符串缓存。默认值为 False。
- 类似输出文件,可选
将输出写入到的类似文件的对象。如果省略,请使用寻呼机。
笔记
通过检查关键字是否出现在函数名称中、文档字符串的开头等处,只能粗略地确定相关性。
例子
>>> 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. ...