Computer Science, asked by shubham482080, 5 months ago

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 Fionaobed47
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 gaganadithyareddy9
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