write a python program to calculate simple interest
Answers
Answered by
0
Answer:
DM me on instagram
I am a youngest C++ devloper at Infosys.pvt.ltd
username :- @kunxall_26
Answered by
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
Computer Science,
3 months ago
English,
6 months ago
Science,
6 months ago
English,
11 months ago
Chemistry,
11 months ago