This is my first time working with Python. I'm trying to figure out how to round decimals in the simplest way possible.
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))