+ 1
SimpleĀ InterestĀ =Ā (PĀ ĆĀ RĀ ĆĀ T)/100Ā Ā whereĀ PĀ =Ā PrincipalĀ Amount,Ā RĀ =Ā RateĀ perĀ Annum,Ā TĀ =Ā TimeĀ (years)Ā Ā
PYTHON:
P=Ā 5000Ā #PrincipalĀ Amount
Ā Ā R=15Ā #RateĀ Ā
Ā T=1Ā #TimeĀ Ā
SIĀ Ā =Ā (P*R*T)100;Ā #Ā SimpleĀ InterestĀ calculationĀ Ā print("SimpleĀ InterestĀ isĀ :");Ā Ā
print(SI);Ā Ā #printsĀ SimpleĀ InterestĀ Ā



