Computer Science, asked by ishaan169, 9 months ago

write a python program to input P I and R also calculate and display SI​

Answers

Answered by rishabhagrawal0
1

Answer:

Explanation:

# Python3 program to find simple interest  

# for given principal amount, time and  

# rate of interest.  

# We can change values here for  

# different inputs  

P = int(input('Enter principal amount:'))

R = int(input('Enter rate of interest:'))

T = int(input('Enter time period:'))

# Calculates simple interest  

SI = (P * R * T) / 100

# Print the resultant value of SI  

print("simple interest is", SI)  

 

Similar questions