本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。