เมื่อจำเป็นต้องคำนวณดอกเบี้ยอย่างง่ายเมื่อให้จำนวนเงิน อัตรา และดอกเบี้ย ก็สามารถกำหนดสูตรอย่างง่ายได้ และสามารถเสียบองค์ประกอบเข้ากับสูตรได้
ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -
ตัวอย่าง
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
คำอธิบาย
-
จำนวนเงินต้น อัตราดอกเบี้ย และเวลาเป็นข้อมูลที่ผู้ใช้ป้อน
-
มีการกำหนดสูตรอื่นเพื่อคำนวณดอกเบี้ยแบบง่าย
-
สิ่งนี้ถูกกำหนดให้กับตัวแปร
-
นี่คือค่าที่คำนวณซึ่งแสดงบนคอนโซล