# Python3 program to find simple interest
# for given principal amount, time and
# rate of interest.


def simple_interest(p,t,r):
    print('The principal is', p)
    print('The time period is', t)
    print('The rate of interest is',r)
    
    si = (p * t * r)/100
    
    print('The Simple Interest is', si)
    return si
    
# Driver code
simple_interest(8, 6, 8)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: