Python 如何强制限定小数点位数

作者:威尔莫爵士 时间:2022-10-01 15:25:43 

利用''%.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]

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

来源:https://blog.csdn.net/qq_40229981/article/details/84143189

标签:Python,小数点,位数
0
投稿

猜你喜欢

  • Python3实现的爬虫爬取数据并存入mysql数据库操作示例

    2022-11-06 15:18:59
  • Golang调用FFmpeg转换视频流的实现

    2024-04-30 10:01:43
  • 超详细注释之OpenCV构建透明的叠加层

    2021-08-18 14:51:01
  • Scrapy抓取京东商品、豆瓣电影及代码分享

    2022-03-23 18:44:47
  • 存储过程优缺点分析

    2012-04-13 11:39:56
  • Python迭代器的实现原理

    2022-12-13 09:26:22
  • python opencv鼠标画点之cv2.drawMarker()函数

    2021-11-28 18:34:40
  • Python获取任意xml节点值的方法

    2023-03-09 01:40:07
  • MySQL索引之主键索引

    2024-01-25 01:52:04
  • python批量提取word内信息

    2021-05-18 14:25:50
  • ASP FCKeditor在线编辑器使用方法

    2023-01-12 23:15:04
  • js中apply和Math.max()函数的问题及区别介绍

    2024-05-09 10:39:14
  • Python使用turtle库绘制小猪佩奇(实例代码)

    2021-09-21 08:45:30
  • 建立MySQL数据库日常维护规范

    2009-03-20 12:34:00
  • CentOS 7下MySQL服务启动失败的快速解决方法

    2024-01-13 16:33:34
  • Python3如何使用tabulate打印数据

    2021-04-17 15:09:26
  • 用javascript实现页面无刷新更新数据

    2011-08-14 07:54:08
  • PYTHON 中使用 GLOBAL引发的一系列问题

    2023-07-08 16:24:21
  • Python实现的径向基(RBF)神经网络示例

    2022-03-06 23:44:35
  • JS清除IE浏览器缓存的方法

    2024-04-19 10:15:25
  • asp之家 网络编程 m.aspxhome.com