Computer Science, asked by Ddv08, 1 year ago

Write a program in Python to calculate the simple interest based on entered amount ,rate and time.

Please help me....

☺️

Answers

Answered by kumard0638pcbdzp
5
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