Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

my language is python *2.11 (Financial application: investment amount) Suppose you want to deposit a certain amount of money into a savings account with a

my language is python
image text in transcribed
image text in transcribed
*2.11 (Financial application: investment amount) Suppose you want to deposit a certain amount of money into a savings account with a fixed annual interest rate. three years? The initial deposit amount can be obtained using the account after formula: initialDepositAmount=(1+monthlyInterestRate)numberogMonthsfinalAccountValue Write a program that prompts the user to enter final account value, annual interest rate in percent, and the number of years, and displays the initial deposit amount. final_acct_value = int(input("Enter final account value: ")) annual_interest_rate = float(input("Enter annual rate in percent: ")) number_of_years = int(input("Enter number of years: ")) number_of_months = number_of_years / 12 monthly_interest_rate =( (annual_interest_rate /100)/12)100 1 i.ial_deposit_amount = (final_acct_value /(1+ monthly_interest_rate ) number print("Initial deposit value is ", intial_deposit_amount)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions