Finance app not asking for input
No matter what I change in the code, once I run Iâm never asked for input. Then my error messages are telling me that nothing was inputted. Shouldnât the first provided line of the code (that presumably were not supposed to change) automatically prompt the user to enter data? #âą Asks the user to enter the savings savings = input () #âąConvert âą the user input into a float value and update the variable savings = float (savings) #âąSavings grow after 1 year at âą a âą5%âą annualâą interest rate balance = savings *1.05 #âąConvert the balance into a string and âą update the variable balance = str(balance) #âąConcatenate the 2 strings to âą produce a message message = "Amount in 1 year:."..+ balance #âąDisplay the message