Python 如何强制限定小数点位数
时间:2022-05-18 08:43:12|栏目:Python代码|点击: 次
利用''%.af''%b――其中 b 代表要限定的数字, a 代表要求限定小数点的位数,结果自动四舍五入。
例:
c = 1.264871331241212 print("%.3f"%c)
运行结果:
1.265
补充:Python Numpy数组格式化打印 (指定小数点位数)
Numpy数组格式化打印方法 (指定小数点位数)np.set_printoptions(precision=3, suppress=True)
precision
:保留几位小数,后面不会补0
supress
:对很大/小的数不使用科学计数法 (true)
formatter
:强制格式化,后面会补0
代码:
import numpy as np a = np.random.random(3) print('before set precision: \n',a) np.set_printoptions(precision=3, suppress=True) print('after set precision: \n',a) np.set_printoptions(formatter={'float': '{: 0.3f}'.format}) print('after set formatter: \n',a)
结果:
before set options: [ 0.05856348 0.5400039 0.70000603] after set precision: [ 0.059 0.54 0.7] after set formatter: [ 0.059 0.540 0.700]
上一篇:Python+selenium实现趣头条的视频自动上传与发布
栏 目:Python代码
本文标题:Python 如何强制限定小数点位数
本文地址:http://www.codeinn.net/misctech/202226.html