Numpy 的 get_printoptions(~)
方法返回包含打印選項的字典。
參數
該方法不帶任何參數。
返回值
包含打印選項的字典。
例子
np.get_printoptions()
{'edgeitems': 3,
'threshold': 1000,
'floatmode': 'maxprec',
'precision': 8,
'suppress': False,
'linewidth': 75,
'nanstr': 'nan',
'infstr': 'inf',
'sign': ' ',
'formatter': None,
'legacy': False}
請注意,您在這裏看到的是默認打印選項。
相關用法
- Python Django get_language_info用法及代碼示例
- Python Pandas get_dummies方法用法及代碼示例
- Python Django get用法及代碼示例
- Python Django get_messages用法及代碼示例
- Python Django get_user_model用法及代碼示例
- Python PIL getbands() and getextrema()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python getattr()用法及代碼示例
- Python OpenCV getTrackbarPos()用法及代碼示例
- Python OpenCV getgaussiankernel()用法及代碼示例
- Python OpenCV getRotationMatrix2D()用法及代碼示例
- Python PIL getbands()用法及代碼示例
- Python gettext.GNUTranslations.ngettext用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python gettext.NullTranslations.install用法及代碼示例
- Python NumPy genfromtxt方法用法及代碼示例
- Python genericalias.__parameters__用法及代碼示例
- Python NumPy geomspace方法用法及代碼示例
- Python Tableau groups.update用法及代碼示例
- Python gzip.compress(s)用法及代碼示例
- Python globals()用法及代碼示例
- Python Tableau groups.delete用法及代碼示例
- Python Tableau groups.create用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | get_printoptions method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。