+ 1
Can anyone help me with this code it should be a tip calculator for every tip
Bill = int(input()) Tip = int(input()) Print(Bill*Tip/100)
4 odpowiedzi
+ 1
Just fix the print(), then it should be fine.
+ 1
Thanks
0
Is it the tip calculator task of Python for Beginners?
Read the task description again: We should only take 1 input (the bill), the tip is always 20%.
Also check the spelling: It is print, not Print.
0
Thanks but i wantet to make a calculator for every amount of tips.