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,
3 months ago
Math,
3 months ago
English,
7 months ago
Physics,
11 months ago
Social Sciences,
11 months ago