📌  相关文章
📜  如何在python代码示例中打印小数点后只有2位的浮点数

📅  最后修改于: 2022-03-11 14:46:49.734000             🧑  作者: Mango

代码示例1
#to round floats in Python you can use the "round" function. ex:

tax = 34.4563
tax = round(tax, 2)

#the number 2 at the end is how many digits are rounded.

#the variable "tax" would now be: 34.46