原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.info.html
校对:(虚位以待)
numpy.
info
(object=None, maxwidth=76, output=<open file '<stdout>', mode 'w'>, toplevel='numpy')[source]获取函数,类或模块的帮助信息。
参数: | 对象:object或str,可选 maxwidth:int,可选
输出:文件类似对象,可选
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. ***