Computer Science, asked by nsaveetha1977, 4 months ago

write a python program to calculate simple interest​

Answers

Answered by kunxall27
0

Answer:

DM me on instagram

I am a youngest C++ devloper at Infosys.pvt.ltd

username :- @kunxall_26

Answered by thestylo
2

Explanation:

# Python3 program to find simple interest

# for given principal amount, time and

# rate of interest.

def simple_interest(p,t,r):

print('The principal is', p)

print('The time period is', t)

print('The rate of interest is',r)

si = (p * t * r)/100

print('The Simple Interest is', si)

return si

# Driver code

Similar questions