Question
PYTHON LANGUAGE 1,write a program that reads in an investment amount, the annual interest rate, and the number of years, and then displays the future
PYTHON LANGUAGE
1,write a program that reads in an investment amount, the annual interest rate, and the number of years, and then displays the future investment value using the following formula. Please display the future investment value with two digits after the decimal point. futureInvestmentValue=investmentAmount(1+monthlyInterestRate)numberOfMonths Sample Run: Enter investment amount: 1000.56 Enter annual interest rate: 4.25 Enter number of years: 1 Future investment value is 1043.92 A. [5 points] What is(are) the input(s) and output(s)? B. [5 points] List the steps to get output(s) from input(s) .
2.
Write a program that reads the subtotal and the gratuity rate and computes the gratuity and total. For example, if the user enters 10 for the subtotal and 15 for the gratuity rate (we use 0.15 in our program as the gratuity rate), the program displays 1.5 as the gratuity and 11.5 as the total.
A. What is(are) the input(s) and output(s)?
B. List the steps to get output(s) from input(s)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started