Program in python to find simple interest #python

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

#100 % working and Correct
# You can also check by copying it.

p=float(input("Enter Principal Value:"))
r=float(input("Enter Rate:"))
t=float(input("Enter Time:"))
i=p*r*t/100
print ("Interest:", i)

chief
visit shbcf.ru