Write the python program to calculate simple interest. get the inputs from the user at program execution.(Note: Simple interest = PNR/100)
SPAMMERS WILL BE REPORTED
Answers
Answered by
0
Answer:
principal = float(input("Enter the value of principal: "))
time = float(input("Enter the time: "))
rate = float(input("Enter the rate: "))
interest = (principal*time*rate)/100
print("The simple interest is Rs.",interest)
Similar questions
Geography,
17 days ago
Social Sciences,
17 days ago
Hindi,
1 month ago
Biology,
1 month ago
Computer Science,
9 months ago