这是我第一次使用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.

最佳答案

您应该使用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))

关于python - 如何在Python中四舍五入到最接近的小数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57011481/

10-12 04:02