本文介绍了只得到 1 个小数位的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将 45.34531 转换为 45.3?

推荐答案

你想用一个数字来表示吗:

Are you trying to represent it with only one digit:

print("{:.1f}".format(number)) # Python3
print "%.1f" % number          # Python2

或者实际上四舍五入其他小数位?

or actually round off the other decimal places?

round(number,1)

甚至严格四舍五入?

math.floor(number*10)/10

这篇关于只得到 1 个小数位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-12 05:31