Answer:
The update code is:
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))
print(p*(1+i)**t)
Explanation:
Required
Program to compute future value
Up to the third line, your program is correct.
The only correction that needs to be made is as follows:
On the fourth line, change p*(1+i)^t to p*(1+i)**t because Python use ** as raise to power and not ^
Type the correct answer in the box. Spell all words correctly.
Derek wants to share his digital portfolio with a wider audience. How can he do so?
Derek should publish his digital portfolio on the
, to show it to a wider audience.
Answer:
internet
Explanation:
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
What is the internet?An international network is a collection made up of linked networks that use standardized data exchange to provide a range of digital services.
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
More about the internet link is given below.
https://brainly.com/question/13308791
#SPJ2