如何在Python中四舍五入到最接近的小数

时间:2019-07-12 17:20:02

标签: python python-3.x

这是我第一次使用Python。我正在尝试找出如何以最简单的方式舍入小数。

print("\nTip Calculator")

costMeal = float(input("Cost of Meal:"))

tipPrct = .20
print("Tip Percent: 20%")

tip = costMeal * tipPrct

print("Tip Amount: " + str(tip))

total = costMeal + tip
print("Total Amount: " + str(total))

I need it to look like this image.

1 个答案:

答案 0 :(得分:2)

您应该使用Python's built-in round function.

round()的语法:

round(number, number of digits)

round()的参数:

..1) number - number to be rounded
..2) number of digits (Optional) - number of digits 
     up to which the given number is to be rounded.
     If not provided, will round to integer.

因此,您应该尝试使用以下代码:

print("\nTip Calculator")

costMeal = float(input("Cost of Meal: "))

tipPrct = .20
print("Tip Percent: 20%")

tip = costMeal * tipPrct
tip = round(tip, 2) ## new line

print("Tip Amount: " + str(tip))

total = costMeal + tip
print("Total Amount: " + str(total))