numpy.info¶
-
numpy.
info
(object=None, maxwidth=76, output=<open file '<stdout>', mode 'w'>, toplevel='numpy')[source]¶ 获取函数,类或模块的帮助信息。
参数: 对象:object或str,可选
maxwidth:int,可选
打印宽度。
输出:文件类似对象,可选
输出写入的文件样对象,默认为
stdout
。对象必须以“w”或“a”模式打开。toplevel:str,可选
在此级别开始搜索。
笔记
当与对象交互使用时,
np.info(obj)
等效于Python提示符下的help(obj)
或obj?
在IPython提示符。例子
>>> 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. ***