set_printoptions(precision=None, threshold=None, edgeitems=None, linewidth=None, suppress=None, nanstr=None,
infstr=None)
对于每个属性的释义:
precision : int, optional,float输出的精度,即小数点后维数,默认8( Number of digits of precision for floating point output (default 8))
threshold : int,可选,当数组数量过多时,设置几个显示的数字,其余使用省略号(触发汇总而不是完整repr的数组元素总数(默认1000))
edgeitems : int, optional,边缘数目(Number of array items in summary at beginning and end of each dimension (default 3))
linewidth : int, optional,The number of characters per line for the purpose of inserting line breaks (default 75)
suppress : bool, optional,是否压缩由科学计数法表示的浮点数(Whether or not suppress printing of small floating point values using scientific notation (default False))
nanstr : str, optional,String representation of floating point not-a-number (default nan)
infstr : str, optional,String representation of floating point infinity (default inf)
实例:
np.set_printoptions(threshold='nan') (意思是全部打印)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 哪个版本的python是免费的10/07
- ♥ 如何在python脚本中执行sql语句?11/16
- ♥ 初学者学c还是学python?12/22
- ♥ python中的会话是什么09/26
- ♥ python如何读取本地文件09/19
- ♥ 如何使用python运算符优先级?10/27
内容反馈