Computer Science, asked by ChrisNevin, 11 months ago

Write a program to find compound interest in Python​

Answers

Answered by anuragtiwari14
3

Answer:

Python Program for compound interest

Compound Interest formula:

Formula to calculate compound interest annually is given by:

Compound Interest = P(1 + R/100)r

Where,

P is principle amount

R is the rate and

T is the time span

Answered by shrutiverma383
9

Answer:p= int(input( 'enter principle value' ))

R = int(input( 'enter rate' ))

T = int( input ( V enter years '))

C = p*( 1+ R/100)*t

Print ( c,' is the compound interest ')

Explanation:please mark me as brainliest

Similar questions