0
Somebody knows how to solve the problem finance app. Even my result is like it must be, but still I can't pass it
4 Respuestas
0
show your code
give a complete task description
tag the relevant programming language
0
Python programming language, Working with data
0
show
yout
code
0
# Asks the user to enter the savings
savings = input(150)
# Convert the user input into a float value and update the variable
savings = float(150)
savings
# Savings grow after 1 year at a 5% annual interest rate
balance = 150.0 * 1.05
# Convert the balance into a string and update the variable
balance = str(150.0 * 1.05)
balance
# Concatenate the 2 strings to produce a message
message = ("Amount in 1 year: " + balance)
# Display the message
print(message)