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
simple_interest(8, 6, 8)
To embed this project on your website, copy the following code and paste it into your website's HTML: