SI / EMI calculator
p=float(input("Enter the value of loan"))
r=float(input("At what rate of interest(ROI)you have taken the loan"))
t=float(input("For what period you have taken the loan(in years)"))
si=p*r*t/100
a=p+si
print("Total interest to be paid is",si)
print("Total amount to be paid is",a)
print("The EMI is to be paid every month is",a/(t*12))
Comments