0
Can someone help me with this? Iâm stuck with this for so long now.
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
2 RĂ©ponses
+ 2
50*20.0/100=10.0
+ 2
bill = int(input())
tip=("100Ă·50%20")
print("x")
#your code goes here