0
How do I solve this đ
When you go out to eat, you always tip 20% of the bill amount. But whoâs got the time to calculate the right tip amount every time? Not you thatâs for sure! Youâre making a program to calculate tips and save some time. Your program needs to take the bill amount as input and output the tip as a float. Sample Input 50 Sample Output 10.0
5 Answers
+ 1
Donât put the math inside the input (). Get the input then do the math. Then print it.
+ 4
Hi! First, please, show us your attempt!
+ 2
Just take out 20% of bill amount
And output it
+ 1
tip=float(input (bill*20/100))
This is my attempt đâčïž
+ 1
Thanks



