本文简要介绍 python 语言中 numpy.info
的用法。
用法:
numpy.info(object=None, maxwidth=76, output=<_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>, toplevel='numpy')
获取函数、类或模块的帮助信息。
- object: 对象或str,可选
输入要获取信息的对象或名称。如果
object
是一个 numpy 对象,则给出其文档字符串。如果它是一个字符串,则搜索可用模块以查找匹配的对象。如果 None,则返回有关info
本身的信息。- maxwidth: 整数,可选
印刷宽度。
- output: 像对象一样的文件,可选
输出写入的文件类对象,默认为
stdout
。该对象必须以‘w’ 或‘a’ 模式打开。- toplevel: str,可选
在此级别开始搜索。
参数:
注意:
当与对象交互使用时,
np.info(obj)
等效于 Python 提示符下的help(obj)
或 IPython 提示符下的obj?
。例子:
>>> np.info(np.polyval) polyval(p, x) Evaluate the polynomial p at x. ...
当为
object
使用字符串时,可能会得到多个结果。>>> np.info('fft') *** Found in numpy *** Core FFT routines ... *** Found in numpy.fft *** fft(a, n=None, axis=-1) ... *** Repeat reference found in numpy.fft.fftpack *** *** Total of 3 references found. ***
相关用法
- Python numpy interp用法及代码示例
- Python numpy in1d用法及代码示例
- Python numpy indices用法及代码示例
- Python numpy insert用法及代码示例
- Python numpy intersect1d用法及代码示例
- Python numpy inner用法及代码示例
- Python numpy invert用法及代码示例
- Python numpy isclose用法及代码示例
- Python numpy issctype用法及代码示例
- Python numpy isnat用法及代码示例
- Python numpy is_busday用法及代码示例
- Python numpy isposinf用法及代码示例
- Python numpy issubdtype用法及代码示例
- Python numpy issubclass_用法及代码示例
- Python numpy issubsctype用法及代码示例
- Python numpy iscomplexobj用法及代码示例
- Python numpy iinfo用法及代码示例
- Python numpy isfinite用法及代码示例
- Python numpy ix_用法及代码示例
- Python numpy iscomplex用法及代码示例
- Python numpy imag用法及代码示例
- Python numpy isin用法及代码示例
- Python numpy i0用法及代码示例
- Python numpy isinf用法及代码示例
- Python numpy identity用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.info。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。