13.WAP to find the simple interest in python
Answers
Answered by
0
The formula for simple interest-
SI= P*T*R/100
where,
SI- Simple Interest
P- Principal amount
T- Duration (Number of years)
R- Rate of interest
Program for calculating simple interest:
P = float (input("Enter principle amount"))
R = float (input("Enter the number of years"))
T = (input("Enter rate of interest"))
SI = (P * R * T) / 100
print ("Simple interest : {}".format(SI))
Hope this helps! If it does, please mark this as the brainliest answer! :)
Answered by
0
Answer:
Hey this program is in python used to find Simple Interest...
p = float(input("Enter principal: "))
t = float(input("Enter time taken: "))
r = float(input("Enter rate of interest: "))
si = (p*t*r)/100
print("Simple Interest = ", si)
# Hope this helps!
Similar questions