Write a Python program to find the simple interest. Take Principal, Rate of interest and time
from user.
Answers
Answered by
3
principle=float(input("Enter the principle amount:"))
time=int(input("Enter the time(years):"))
rate=float(input("Enter the rate:"))
Simple_interest=(principle*time*rate)/100
print("The simple interest is:",Simple_interest)
Similar questions