Angela 박사의 100일 간의 코드 Python 부트캠프 중 02일
#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
print("Welcome to the tip calculator!")
#Get Total bill
total_bill = float(input("What was the total bill? $"))
#Get how many percentage for the bill
tip = int(input("How much tip would you like to give? 10, 12, or
15? "))
#Get how many persons to split the bill
bill_split_person = int(input("How many people to split the bill? "))
#Get Percentage of tip for total bill and add the value of tip to
total bill / each person
calc_bill = round((total_bill * float(tip/100) + total_bill) /
bill_split_person, 2)
final_bill = "{:.2f}".format(calc_bill)
print(f"Each person should pay: ${final_bill}")
산출:
Reference
이 문제에 관하여(Angela 박사의 100일 간의 코드 Python 부트캠프 중 02일), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/junohegel/day-02-of-100-days-of-code-python-bootcamp-by-dr-angela-lhh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)