当前位置 : 主页 > 编程语言 > python >

Python:浮点数保留小数位数的方法整理

来源:互联网 收集:自由互联 发布时间:2022-10-14
示例 print('%.2f' % 1.255)# 1.25print('{:.2f}'.format(1.2635))# 1.26print(format(1.235, '.2f'))# 1.24print(round(1.23456, 2))# 1.23 参考Python保留小数的方法

示例

print('%.2f' % 1.255) # 1.25 print('{:.2f}'.format(1.2635)) # 1.26 print(format(1.235, '.2f')) # 1.24 print(round(1.23456, 2)) # 1.23

参考 Python保留小数的方法

上一篇:【数学模型】基于Matlab实现洪水调度运算
下一篇:没有了
网友评论