#set the counter, the rate of increase, and the starting tuition increase=.02 counter=1 tuition=6000 #creat loop that runs 5 times. each iteration will take the current tuition and increase it by 2%, then display the new tuition for counter in range(1,6): tuitionIncrease=tuition*increase tuition=tuition+tuitionIncrease print("${:,.2f}".format(tuition))
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question