Computer Science, asked by vishu5814, 9 months ago

python program to read Principal Amount, Rate of Interest , years . Find Simple Interest.​

Answers

Answered by vcharithacherry
2

Answer:

p=int(input("enter a principle amount: "))

t=int(input("enter a time period: "))

r=float(input("enter rate of interest: "))

si=(p*t*r)/100

print("The simple interest is {}".format(si))

Similar questions