Python 如何强制限定小数点位数
程序员文章站
2022-09-06 16:02:57
利用''%.af''%b——其中 b 代表要限定的数字, a 代表要求限定小数点的位数,结果自动四舍五入。例:c = 1.264871331241212print("%.3f"%c)运行结果:1.26...
利用''%.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]
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。