There was an error while loading. Please reload this page.
def simpleInterest(p,t,r): si=(p*t*r)/100 return si p,r,t = eval(input()),eval(input()),eval(input()) To write a Python program that replaces the substring between ...