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
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
English,
5 months ago
Science,
5 months ago
Computer Science,
5 months ago
Computer Science,
11 months ago
Science,
11 months ago
Math,
1 year ago
Math,
1 year ago
English,
1 year ago