Ask Question
2 December, 17:13

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:

+1
Answers (1)
  1. 2 December, 18:05
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers