write a python program to find compound interest
Answers
Answered by
2
Explanation:
In this program, the user input is taken using input() function which takes input as a string. But as we are doing the calculation part, we need the input to be a float. So, we did the type-conversion using float() function.
Answered by
1
Answer:
CALCULATE COMPOUND INTEREST
To calculate compound interest , we can use formula
p ( 1 + r / 100 )t
- P = principle amount
- R = rate of the interest , and
- T = time in the years
HOPE IT HELPS TO YOU
please mark me as a brain list
Similar questions