- 1
Who can help me with tip calculator
https://code.sololearn.com/W48d2oUF4HV7/?ref=app https://www.sololearn.com/discuss/2832576/?ref=app
4 Answers
0
Am going try, tanks
0
Explanation: 20% of 50 is 10.
To calculate 20% of a given amount, you can multiply the number by 20 and divide it by 100: 50*20/100 = 10.0
0
Print(50*20/100)
0
Fruit More Class
You have to take input from user.
bill = int(input())
print (bill * 20 / 100)