Ask Question

Using python,

At one college, the tuition for a full-time student is $8,000 per semester.

It has been announced that the tuition will increase by 3% each year for the next five years.

Write a program with a loop that displays the projected semester tuition amount for the next five years as:

+4
Answers (1)
  1. 27 March, 20:44
    0
    We can use for-loop in python to calculate the tuition amount in the next 5 years. If the tuition is increasing 3% each year, in each loop we can multiply the amount by 1.03

    tuition = 8000

    for year in range (1,6):

    tuition * = 1.03

    print ("The tuition amount after " + str (year) + " year (s) is $" + str (tuition))
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Using python, At one college, the tuition for a full-time student is $8,000 per semester. It has been announced that the tuition will ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers