How to Calculate Compound Interest in Python

In this tutorial, we will program 'How to Calculate Compound Interest in Python'. We will learn how to calculate compound interest based on user input. The objective is to allow you to calculate your total compound interest using the principal amount, years, and interest rate. I will provide a sample program to demonstrate the actual coding of this tutorial.

This topic is very easy to understand; just follow the instructions I provide, and you can also do it yourself with ease. The program I will show you covers the basics of programming for calculating compound interest. I will do my best to provide you with the easiest way for getting the interest value. So, let's start with the coding.

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console that will display program. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. def compound_interest(principal, rate, time):
  2. Amount = principal * (pow((1 + rate / 100), time))
  3. CI = Amount - principal
  4. print("Compound interest is", CI)
  5.  
  6.  
  7.  
  8. ret = False
  9.  
  10. while True:
  11. print("\n================== Calculate Compound Interest ==================\n\n")
  12.  
  13.  
  14. principal = int(input("Enter the principal amount: "))
  15. rate = int(input("Enter rate of interest: "))
  16. time = int(input("Enter time in years: " ))
  17.  
  18. compound_interest(principal,rate,time)
  19.  
  20.  
  21. opt = input("\nDo you want to try again?(yes/no): ")
  22.  
  23. if opt.lower() == 'yes':
  24. ret=False
  25. elif opt.lower() == 'no':
  26. ret=True
  27. print("Exiting program....")
  28.  
  29. else:
  30. print("Please enter yes/no:")
  31. break
  32.  
  33. if ret == False:
  34. continue
This Python script calculates compound interest based on the principal amount, interest rate, and time period provided by the user. It defines a function compound_interest to perform the calculation and print the result.

Then, it prompts the user to input the principal amount, interest rate, and time period, calls the compound_interest function with these values, and displays the calculated compound interest. Finally, it asks the user if they want to try again or exit the program.

Output:

The How to Calculate Compound Interest in Python source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Calculate Compound Interest in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment