Python 3Calculate the Simple Interest in Python6 years agoAdd Commentby MarcIn this post, we will write a Python 3 program to Calculate the simple interest.Python Code: p=input('Enter Amount:') r=input('Enter Rate:') t=input('Enter Time:') SI=int(p)*int(r)*int(t)/100 print('Interest is : {0}'.format(SI)) 1234567 p=input('Enter Amount:')r=input('Enter Rate:')t=input('Enter Time:')SI=int(p)*int(r)*int(t)/100print('Interest is : {0}'.format(SI)) Output:Like this:Like Loading...