Learn practical skills, build real-world projects, and advance your career
def first_fun(p,r,t):
    SI = (p*r*t)/100
    return SI
first_fun(10000, 10, 4)
4000.0
def first_fun(p,r,t):
    SI = (p*r*t)/100
    Amount= p + SI
    return Amount
first_fun(10000, 10, 4)
14000.0
def first_fun(p,r,t):
    SI = (p*r*t)/100
    return p + SI