0
tip calculator
At the course of Python for the beginners, why do I need to remeve "What's the bill?" for the code to run? Here is my code: bill = float(input("What's the bill?")) amount = bill * 20 / 100 final_amount = float(amount) print(final_amount)
3 Respostas
+ 2
Simply remove the string inside of the input function
0
Because it provides unneccisary output
0
Thank you for your answers!