Day 10: 100 Days of Python
myBill = float(input("What was the bill?: "))
numberOfPeople = int(input("How many people?: "))
tip = int(input("What percent tip do you want to leave: 15, 18, or 20 percent? "))
bill_with_tip = tip / 100 * myBill + myBill
bill_per_person = bill_wi...
datapythonist.hashnode.dev1 min read