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