编程语言
首页 > 编程语言> > python-如何舍入数字

python-如何舍入数字

作者:互联网

我如何将这样的数字四舍五入到小数点后两位,这些数字全部存储在网络抓取工具输出的变量中:

4.7532
4.7294
4.7056
4.6822857142857
4.65868
4.63522
4.6119866666667
4.58898
4.566064
4.543216

我是python的新手,所以我不确定.我正在使用Python 2

解决方法:

使用内置函数round(),例如:

>>> round(4.7532,2)
4.75
>>> round(4.7294,2)
4.73

标签:python,rounding
来源: https://codeday.me/bug/20191011/1891190.html