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