WAP in Python to calculate simple interest where the principal amount, time and rate of interest
will be given by the user.
5
Answers
Answered by
0
Answer:
do you learn python i to learn python and html css to
1 follw if you learn and brainliest answer
Explanation:
Answered by
1
Answer:
Hey this is in python...
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