Tip calculator.
write a program to calculate the tip along with the actual bill and then split the bill between your friends?
#If the bill was $150.00, split between 5 people, with a 12% tip.
#Each person should pay (150.00 / 5) * 1.12 = 33.6
#Format the result to 2 decimal places = 33.60
#Tip: There are 2 ways to round a number. You might have to do some Googling to solve this.💪
#Write your code below this line 👇
print("***Welcome to tip calculator***\n")
bill = float(input("Enter total amount of bill\n"))
tip = int(input("What percentage of tip do you like to give 10, 12,or 15 ?\n"))
people = int(input("How many people to split bill\n"))
percentage = tip/100
tip_ammount = percentage*bill
total = tip_ammount+bill
split_ammount = total/people
pay_ammount = round(split_ammount,2)
pay_ammount = "{:.2f}".format(split_ammount)
print(f"Each person should pay: {pay_ammount}")
.png)
Comments
Post a Comment