S.I. calculator


#S.I. calculator P = int (input('Principal amount:')) # It will take input as Principal amount: T = int (input('Time period:')) # It will take input as Time period: R = int (input('Rate:')) # It will take input as Rate: print ('S.I =',P*T*R/100) # This is the final result

Comments

Popular Post