python program for simple interest | python programs example
Simple interest formula is given by: Simple Interest = (P x T x R)/100 Where, P is the principal amount T is the time and R is the rate
What is ‘Simple Interest’?
Simple interest is a quick method of calculating the interest charge on a loan. Simple interest is determined by multiplying the daily interest rate by the principal by the number of days that elapse between payments.
#Python3 program to find simple interest
for given principal amount, time and
rate of interest.
def simple_interest(p,t,r):
print('The principal is', p)
print('The time period is', t)
print('The rate of interest is',r)
si = (p * t * r)/100
print('The Simple Interest is', si)
simple_interest(8, 6, 8)
We can calculate the simple interest by taking P,T and R from the user.
#pythonprogramming #pythonprograms #pythonprogramtofindsimpleinterest #indiancybereducation #python3 #python3x #python #simpleinterest #programmingtutorial
On this page of the site you can watch the video online python program for simple interest | python programs example with a duration of online in good quality, which was uploaded by the user indian cyber education 27 April 2023, share the link with friends and acquaintances, this video has already been watched 522 times on youtube and it was liked by 60 viewers. Enjoy your viewing!