Write a Python function to compute simple interest
Topic: Write a Python function to compute simple interest
Solution
def simple_interest(p,t,r): si = (p * t * r)/100 return si
List all Python Programs
Solution
def simple_interest(p,t,r): si = (p * t * r)/100 return si