Need help tip calculator python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Need help tip calculator python

Need to make tip calculator 50*20/100 This is what I got so far below meal =50 tip = 0.20/100 int(input ) print tip Thanks for any feedback

23rd Jan 2022, 9:22 PM
Rafael
3 Answers
+ 4
You can approach the task like this: 1. Get input() and store it into a bill variable 2. Convert bill to a numeric data type 3. Calculate the tip as 20% of the bill 4. print() the tip
23rd Jan 2022, 9:49 PM
Lisa
Lisa - avatar
+ 1
Rafael 1st mistake: tip= 0.20/100?? Write it like: 20/100 OR Simply 0.20 (or 0.2) 2nd mistake: Why meal=50?? You have to make such a code which will accept all values, Do you know how to take input from a user? If not, use: meal=int(input()) 3rd mistake: You did just printed the tip (which is actually 0.20 (but you wrote 0.20/100) You have to multiply it to the meal Like this: 0.20*meal OR (20/100)*meal Now you have to print this total like this: print(tip)
24th Jan 2022, 2:22 AM
NEZ
NEZ - avatar
+ 1
Thanks
24th Jan 2022, 3:14 AM
Rafael