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
En esta página del sitio puede ver el video en línea python program for simple interest | python programs example de Duración online en buena calidad , que subió el usuario indian cyber education 27 abril 2023, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 522 veces y le gustó 60 a los espectadores. Disfruta viendo!