Write a Python function to find the simple interest in Python when principle amount, rate of interest and time is given
Topic: Write a Python function to find the simple interest in Python when principle amount, rate of interest and time is given
Solution
def simple_interest(p,r,t): si = (p*r*t)/100 return si
List all Python Programs