Computer Science, asked by anujkesharwani8, 4 months ago

write a Python program to find the simple interest for Given Principle,rate and Time..
(A). If time Is not Given assume Time = 1 year
(B). If time and Rate Are Not given Then assume Time= 1 year and Rate = 10%​

Answers

Answered by rishisourav5
1

Hey Mate Here Is Your Answer

Simple Interest = (P x T x R)/100

Where,

P is the principal amount

T is the time and

R is the rates

Code=

P = 1000

R = 10

T = 1

# simple interest

SI = (P * R * T) / 100

print("simple interest is", SI)

Similar questions