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 Python Basics All Together Now Handle Exceptions

Diana Victoria Villada
Diana Victoria Villada
9,543 Points

Infinite Loop!! Help Please!

When I run my code I get an infinite loop that says, There are 100 tickets remaining. I have checked my code and it matches Craigs. Can somebody please tell me what I am missing?

Steven Parker
Steven Parker
229,787 Points

To make it possible to analyze your issue and give an answer, please show your code (formatted using Markdown) or make a snapshot of your workspace and post the link to it here.

1 Answer

As Steven said, it's impossible to analyze what is wrong without seeing your code, but based on what you are seeing and the code in the video, my first guess is that you are not correctly updating your ticket count when you proceed. In your conditional that asks if the user wants to proceed, double check that you have tickets_remaining -= num_tickets If you don't have the minus sign before the equal sign, you're never going to have tickets_remaining go below 1, so the loop will never end.