जब राशि, दर और ब्याज दिए जाने पर एक साधारण ब्याज की गणना करने की आवश्यकता होती है, तो एक साधारण सूत्र को परिभाषित किया जा सकता है, और तत्वों को सूत्र में जोड़ा जा सकता है।
नीचे उसी का एक प्रदर्शन है -
उदाहरण
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
स्पष्टीकरण
-
मूल राशि, ब्याज दर और समय को उपयोगकर्ता इनपुट के रूप में लिया जाता है।
-
साधारण ब्याज की गणना के लिए एक अन्य सूत्र परिभाषित किया गया है।
-
यह एक वैरिएबल को असाइन किया गया है।
-
यह परिकलित मान है जो कंसोल पर प्रदर्शित होता है।