Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

a 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

https://w.trhou.se/kx0q0pqhwu

thanks in advance, i will happy to hear any suggestions.

1 Answer

Steven Parker
Steven Parker
230,274 Points

In 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.

Thanks steven it worked, I understood the problem