如何在逗号后减少数字而不舍入四舍五入

时间:2018-11-29 19:40:46

标签: python python-3.x

如何在逗号后减少数字而不舍入四舍五入 示例:我有x = 2.97656 我希望它是2.9而不是3.0 谢谢

2 个答案:

答案 0 :(得分:1)

如果您不想使用library("vegan") df<- data.frame(div=diversity(ph_mat, index="shannon"), month=unique(ph_mat$month)) ,则可以使用math.round()

math.floor()

答案 1 :(得分:-2)

您可以使用round(var,number precision) 看到这个链接请更多信息 https://www.geeksforgeeks.org/precision-handling-python/