Answered step by step
Verified Expert Solution
Question
1 Approved Answer
#Below is a function that calculates_futures_value of an investment based on: #a starting principal amount p, interest amount i , time t #Write a program
#Below is a function that calculates_futures_value of an investment based on: #a starting principal amount p, interest amount i , time t #Write a program that determines how long it takes to double your investment #NOTE: You will need loops for this program python
time_counter = 0 #Use this to keep track of time principal = float(input("Please enter initial investment amount: ")) interest = float(input("Please enter interest rate in decimal format (e.g. 0.05 instead of 5%): "))
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