Write Code to Calculate simple interest in python.

 

P = float(input("Enter Principle Amount :"))
R = float(input("Enter Rate of Interest :"))
T = float(input("Time (in Years)"))

SI = (P * R * T)/100

print("Simple Interest :",SI)

Comments