Introduction to Programming using Python 1st Edition

Published by Pearson
ISBN 10: 0132747189
ISBN 13: 978-0-13274-718-9

Chapter 2 - Elementary Programming - Programming Exercises - Page 60: 2.21

Answer

monthlySavingAmount = eval(input("Enter the monthly saving amount: ")) MONTHLY_INTEREST_RATE = 0.00417 total = monthlySavingAmount * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) print("After the sixth month, the account value is",total)

Work Step by Step

# (Financial application: compound value) Suppose you save $100 each month into # a savings account with an annual interest rate of 5%. Therefore, the monthly interest # rate is 0.05/12 = 0.00417. After the first month, the value in the account # becomes # 100 * (1 + 0.00417) = 100.417 # After the second month, the value in the account becomes # (100 + 100.417) * (1 + 0.00417) = 201.252 # After the third month, the value in the account becomes # (100 + 201.252) * (1 + 0.00417) = 302.507 # and so on. # Write a program that prompts the user to enter a monthly saving amount and # displays the account value after the sixth month. monthlySavingAmount = eval(input("Enter the monthly saving amount: ")) MONTHLY_INTEREST_RATE = 0.00417 total = monthlySavingAmount * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) total = (monthlySavingAmount + total) * (1 + MONTHLY_INTEREST_RATE) print("After the sixth month, the account value is",total)
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.