Computer Science, asked by divij46, 11 months ago

write a program in PYTHON to accept principal amount and timr as the input Then calculate the simple interest on the basis of given value ?
PLS DONT JUST ANSWER TO INCREASE YOUR POINTS​

Attachments:

Answers

Answered by akshayamca14
2

Answer:

pamount=float(input("Enter Principle Amount:"))

years=int(input("Enter time in years:"))

if pamount>=10000:

   interest=20

else:

   interest=15

rate=interest/100

result=float(1+rate*years)

print("Simple interset Amount: "+str(result*pamount))

Explanation:

Similar questions