Hey!......I am currently learning python and i am stuck at one step.It's the finance app practice level.Plz can anyone help me?
I am not a pro learner so that's why i cannot use ai.I can't understand the code and i don't even know is it telling me to do.It's the "Introduction to python"course. Following is the task: You are developing a finance app that helps users to grow their savings. Task Complete the code to take the savings, calculate the end amount, then display a message on the screen. (I will also write the code that was already written on the screen) # Asks the user to enter the savings savings = input() # Convert the user input into a float value and update the variable 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 = # Concatenate the 2 strings to produce a message message = "Amount in 1 year: " balance # Display the message (I can't understand it.So plz help me)