I was given this question to solve from my Intro to Python professor.

Tkinter: (Create an investment-value calculator) Write a program that calculates the future value of an investment at a given interest rate for a specified number of years. The formula for the calculation is as follows:
futureValue = investmentAmoun t * (1 + monthlyInterest Rate) ^ years * 12
Use text fields for users to enter the investment amount, years,...