InterviewSolution
Saved Bookmarks
| 1. |
Write a program in Python to find simple interest |
| Answer» P=int(input("enter a value"))R=int(input("enter a value "))T=int(input("enter a value "))SI=P*R*T/100Print(SI) | |