I am having a problem with rounding the final result to 2 decimal places in Python. It always shows up only 1 decimal. eg 33.6$ I want to have it as 33.60$
#tip calculator
bill = float (input("what is the total bill? "))
tip = float (input ("percentage tip 10%, 20% etc. ? "))
ppl = int (input ("number of people to split the bill? "))
tip_decimal = tip/100+1
calc = (bill/ppl)*tip_decimal
calc2 = round(calc, 2)
print(f"each person should pay {calc2}$")