Python Program to calculate simple interest


p=int(input('enter principle amount'))

r=int(input('enyer rate of intrest'))

t=int(input('time of intrest'))

si=p*r*t/100

print('simple intrest',si)

Comments

Some popular posts

Python Program that computes the net amount of a bank account based a transaction log from console input.