0
CALCULATOR(MODULE 3)
Please someone how to give out multiple input in these:bill = int(input(125 *20/100))
2 ответов
0
Use two variables.
Bill is already a defined variable.
Create another float variable.
Bill = int(input())
Tip = float(Bill * 20/100)
0
Anamitra Bhattacharyya
Thanks