-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
24 lines (17 loc) · 785 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#If the bill was $150.00, split between 5 people,
# with 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 the tip calculator!")
bill = float(eval(input("What was the total bill? $")))
tip = int(eval(input("How much tip would you like to give? 10, 12, or 15? ")))
people = int(eval(input("How many people to split the bill?")))
tip_as_percent = tip / 100
total_tip_amount = bill * tip_as_percent
total_bill = bill + total_tip_amount
bill_per_person = total_bill / people
final_amount = round(bill_per_person, 2)
print(f"Each person should pay: ${final_amount}")