Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

모든 필수 값이 주어지면 단순 이자를 계산하는 Python 프로그램

<시간/>

금액, 이율, 이자가 주어졌을 때 단순이자를 계산할 필요가 있을 때, 간단한 공식을 정의할 수 있고, 요소들을 공식에 ​​대입할 수 있다.

아래는 동일한 데모입니다 -

예시

principle_amt = float(input("Enter the principle amount..."))
my_time = int(input("Enter the time in years..."))
my_rate = float(input("Enter the rate..."))
my_simple_interest=(principle_amt*my_time*my_rate)/100
print("The computed simple interest is :")
print(my_simple_interest)

출력

Enter the principle amount...45000
Enter the time in years...3
Enter the rate...6
The computed simple interest is :
8100.0

설명

  • 원금, 이자율 및 시간은 사용자 입력으로 사용됩니다.

  • 단순 이자 계산을 위해 또 다른 공식이 정의됩니다.

  • 이것은 변수에 할당됩니다.

  • 콘솔에 표시되는 계산된 값입니다.