How do I do the finance app level | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do I do the finance app level

I don't know how to do it;-;

19th May 2023, 7:51 AM
Haron Fariz Kasan
Haron Fariz Kasan - avatar
12 Answers
+ 8
Clear all the existing code (clear the screen) and copy below code: savings=float(input()) savings = savings*(1.05) print("Amount in 1 year:",savings) this works!
9th Aug 2023, 12:11 PM
Sesodhar Reddy
Sesodhar Reddy - avatar
+ 5
Haron Fariz Kasan How to show your attempt: 1. Save your code in Code Playground as public 2. Edit your question description 3. Tap "+" button, then "Code" 4. Choose your code from Code Playground Plus, also in the question description, describe the task and your difficulties.
19th May 2023, 10:56 AM
Emerson Prado
Emerson Prado - avatar
+ 5
Haron Fariz Kasan , not clear what your question or issue is. > You should create and post the appropriate code and a precise task description with input and output samples.
19th May 2023, 4:39 PM
Lothar
Lothar - avatar
+ 5
Dylan Stallings , it is better for you to start your *own post*, otherwise poeple will not get aware of you nd your problem. > give a clear description what your issue is. > please also include your current code in the post.
24th Jun 2023, 12:48 PM
Lothar
Lothar - avatar
+ 4
Emerson Prado I've made a tutorial before about that https://code.sololearn.com/Wek0V1MyIR2r/?ref=app Use it instead of descripting the process if you want
19th May 2023, 1:23 PM
Ugulberto Sánchez
Ugulberto Sánchez - avatar
+ 2
Hello! Show your attempt and I’ll help you
19th May 2023, 7:56 AM
Ugulberto Sánchez
Ugulberto Sánchez - avatar
+ 2
Share your code
19th May 2023, 9:03 AM
Hasnain [ACTIVE CHALLENGER]
Hasnain [ACTIVE CHALLENGER] - avatar
+ 1
Damion Void Pls avoid giving finished code as answer, because it makes the OP skip the most important part of learning, and encourage the Bad Habit of asking others to solve one's tasks. Prefer giving hints for the OP to find the solution instead.
4th Jun 2023, 1:56 AM
Emerson Prado
Emerson Prado - avatar
+ 1
Whats wrong with this finance app I'm stuck for three days now test 1 correct test 2 and 3 wrong
18th Aug 2023, 4:40 PM
Mofumotse Molopi
Mofumotse Molopi - avatar
0
I'm stuck to
24th Jun 2023, 7:55 AM
Dylan Stallings
Dylan Stallings - avatar
0
I have solved the first case, not the rest of the cases. How do I solve them all in the same code?
27th Nov 2023, 2:57 PM
Gustavo de Matteis
Gustavo de Matteis - avatar
0
# 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 print(message)
9th Feb 2024, 11:18 PM
Ikram Laroussi