Computer Science, asked by cmanasa1014, 1 month ago

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 akshayhegde321
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 kishuvrundupatadia
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