Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

<noob />
17,047 Pointsa problem in a project i am trying to build
Hi. I did a program like a control panel which contains a simple calculator and a avg calculator. However when i try to quit of the program after i used one of them it wont let me get out of the program
this is the current snapshot - the name of the file is cool_comp.py
thanks in advance, i will happy to hear any suggestions.
1 Answer

Steven Parker
216,014 PointsIn the "simple_calc" and "avg" functions, you have a quit test. For example:
if user_decision == "quit":
#...
comp() # <-- here's the issue
Since this function was called by the main loop, instead of calling the main loop again you should just "break" or "return" back to it. Otherwise these functions keep recursively calling each other.
<noob />
17,047 Points<noob />
17,047 PointsThanks steven it worked, I understood the problem