📜  python float print 2 digits - Python 代码示例

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

代码示例2
#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