Computer Science, asked by ShreeyoshiG, 3 months ago

WAP using python to calculate simple interest​

Answers

Answered by ajaycineair
0

Answer:

SI=( P*N*R)/100 formula

Answered by anindyaadhikari13
4

Question:-

  • Write a program using python to calculate simple interest.

Program:-

p=float(input("Enter the principal: "))

r=float(input("Enter the rate of interest per annum: "))

t=float(input("Enter the time in years: "))

si=(p*r*t)/100

print("Simple Interest earned is: ",si)

Similar questions