How to Find a Simple Interest in Python

In this tutorial, we will program 'How to Find Simple Interest in Python'. We will learn how to calculate simple interest in Python. The main goal here is to create a program that will easily calculate the simple interest for your payments. 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 simple interest. I will do my best to provide you with the easiest method of finding the simple interest. 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 simple_interest(p,t,r):
  2. print('The principal is', p)
  3. print('The time period is', t)
  4. print('The rate of interest is',r)
  5.  
  6. si = (p * t * r)/100
  7.  
  8. print('The Simple Interest is', si)
  9. return si
  10.  
  11.  
  12.  
  13. while True:
  14. ret = False
  15.  
  16. print("====================== Find a Simple Interest in Python ====================== \n\n")
  17.  
  18.  
  19. p = int(input("Enter the principal: "))
  20. t = int(input("Enter the time period: "))
  21. r = int(input("Enter the rate of interest: "))
  22. print("\n")
  23.  
  24.  
  25. simple_interest(p, t, r)
  26. print("\n")
  27.  
  28. opt = input("Do you want to update again?(yes/no): ")
  29.  
  30. if opt.lower() == 'yes':
  31. ret=False
  32. elif opt.lower() == 'no':
  33. ret=True
  34. print("Exiting program....")
  35.  
  36. else:
  37. print("Please enter yes/no:")
  38. break
  39.  
  40. if ret == False:
  41. continue

This Python code calculates and displays the simple interest based on user-provided values for principal amount, time period, and interest rate. It then prompts the user if they want to update the values and continues looping until the user chooses to exit.

Output:

The How to Find a Simple 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 Find a Simple 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