Computer Science, asked by VinCus, 1 month ago

Write the python program to calculate simple interest. get the inputs from the user at program execution.(Note: Simple interest = PNR/100)
\sf{\large{\gray{\underbrace{\black{CAUTION:}}}}}
SPAMMERS WILL BE REPORTED

Answers

Answered by Sirat4
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