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

5th Sep 2025, 4:45 AM
Andrea Riveros
Andrea Riveros - avatar
4 Risposte
0
show your code give a complete task description tag the relevant programming language
5th Sep 2025, 6:11 AM
Lisa
Lisa - avatar
0
Python programming language, Working with data
5th Sep 2025, 6:14 AM
Andrea Riveros
Andrea Riveros - avatar
0
show yout code
5th Sep 2025, 6:18 AM
Lisa
Lisa - avatar
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)
5th Sep 2025, 6:34 AM
Andrea Riveros
Andrea Riveros - avatar