Computer Science, asked by s14707dshamima19900, 6 hours ago

Write a Python program to find the simple interest. Take Principal, Rate of interest and time
from user.

Answers

Answered by sakshimachhar1710
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