Python program to find simple interest using function in Python
Answers
Answered by
5
Answer:
Hey Here is your answer to find Simple Interest in python....
print("Find Simple Interest...")
rate = float(input("Enter rate of interest: "))
time = float(input("Enter time: "))
time = float(input("Enter time: "))
principal = float(input("Enter principal: "))
si = (rate*time*principal)/100
print("Simple Interest = ", si)
# Hope this helps you!!
# Please mark me as brainliest...
Similar questions
English,
4 months ago
English,
4 months ago
English,
9 months ago
Physics,
1 year ago
Social Sciences,
1 year ago