Write a python function to calculate simple interest given principal , rate and time
Topic: Write a python function to calculate simple interest given principal , rate and time
Solution
def simpleIntereset(principal, rate, time): return principal * rate * time / 100
List all Python Programs