Python
 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

説明

  • 元本、利率、および時間は、ユーザー入力として使用されます。

  • 単利を計算するために別の式が定義されています。

  • これは変数に割り当てられます。

  • これは、コンソールに表示される計算値です。


  1. Pythonプログラムへの単純な関心

    この記事では、Python3.xでの単利の計算について学習します。またはそれ以前。 単純な関心 は、1日の利率に元本を掛け、支払いの間に経過した日数を掛けて計算されます。 数学的に 単利=(P x T x R)/ 100 どこで、 Pは元本です Tは時間であり Rはレートです たとえば、 P =1000の場合、R =1、T =2 次にSI=20.0 それでは、Pythonで単純な利息計算機を実装する方法を見てみましょう。 例 P = 1000 R = 1 T = 2 # simple interest SI = (P * R * T) / 100 print(&

  2. 単純な興味のためのPythonプログラム

    この記事では、Python3.xでの単純な利息の計算について学習します。またはそれ以前。 単利は、1日の利率に元本を掛け、支払いの間に経過した日数を掛けて計算されます。 数学的に Simple Interest = (P x T x R)/100 Where, P is the principal amount T is the time and R is the rate たとえば、 If P = 1000,R = 1,T = 2 Then SI=20.0 Now let’s see how we can implement a simple interest calc