We borrowed $1000 at a 10% annual interest rate. If we did not make a payment for two years, and assuming there is no penalty for non-payment, how much do we owe now? Assign the result to a variable called debt.
Answers
Answered by
1
Answer:
x= 1000
def interest():
y=int(input("Enter interest rate : ")
z=int(input("Enter years : ")
d=x*y*z
i=d/100
return("interest = ",i)
Explanation:
answered in python
Similar questions