Skip to main content

Program to calculate simple interest in python

Python Program to calculate simple interest. Here mentioned other language solution.

#  Python 3 program for
#  Calculate simple interest

# Method which is take three parameters
# And calculates that simple interest
# Here time is form in year
# rate is form of annual interest rate

def simpleInterest( principle,  time,  rate) :
    # Display parameters values
    print("Principle : " + str(principle))
    print("Time : " + str(time))
    print("Rate : " + str(rate))
    # Calculate interest
    amount = (principle * time * rate) / 100
    # Display amount
    print("Simple Interest : " + str(amount) + "\n")

    

if __name__=="__main__":
    # Test Cases
    simpleInterest(1500, 3, 7.3)
    simpleInterest(170.4, 7, 3.4)

Output

Principle : 1500
Time : 3
Rate : 7.3
Simple Interest : 328.5

Principle : 170.4
Time : 7
Rate : 3.4
Simple Interest : 40.55519999999999




Comment

Please share your knowledge to improve code and content standard. Also submit your doubts, and test case. We improve by your feedback. We will try to resolve your query as soon as possible.

New Comment