0


python中如何改变小数点后位数

python中如何改变小数点后位数

在python中一般一般有三种改变小数点后位数的方法:
第一种:使用python内置的round()函数
a = 1.1314 a = 1.0000 a = 1.1267
b = round(a.2)b = round(a.2)b = round(a.2)
output b = 1.13 output b = 1.0 output b = 1.13在这里插入图片描述

第二种:使用python内置的format()函数
a = 1.1314 a = 1.0000 a = 1.1267
output b=1.13 output b=1.0 output b=1.13

第三种:利用格式化方法
特殊情况需要注意的和 round 方法一样在这里插入图片描述
在这里插入图片描述

标签: python

本文转载自: https://blog.csdn.net/Ricardorun/article/details/115602772
版权归原作者 Ricardorun 所有, 如有侵权,请联系我们删除。

“python中如何改变小数点后位数”的评论:

还没有评论