Write a Python program to find simple interest by accepting Principle amount (P), Time (T) and Rate of interest (R)
SI = (P* T * R)/100
Answers
Answered by
2
Answer:
P = int(input("Enter the Principle amount : "))
T = int(input("Enter the Time : "))
R = int(input("Enter the Rate of intrest : "))
SI = (P * T * R)/100
print(SI)
Answered by
0
Answer:
P = int(input("Enter the Principle amount : "))
T = int(input("Enter the Time : "))
R = int(input("Enter the Rate of intrest : "))
SI = (P * T * R)/100
print(SI)
Similar questions