値の前に「$」を付けて float 整数を入力できるようにするにはどうすればよいですか。たとえば、「$4.25」と入力することも、「4.25」と入力することもできます。
また、電卓に「4.35」と入力すると、チップは「0.6」と出てきます。自宅にある電卓では、0.6525 と出ます。どうすれば全体の答えを得ることができますか?
input ('Please Enter to begin')
while True:
print('This calculator will display the tip you owe for your meal price.')
mealPrice = int(float(input('Enter your meal price:')))
asw = mealPrice * 0.15
print('The tip you owe is: $',asw)
endProgram = input ('Do you want to restart the program?')
if endProgram in ('no', 'No', 'NO', 'false', 'False', 'FALSE'):
break