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

Why don't we include the original num_tickets input in the try block?

In a previous tutorial, Craig said to put any problematic code into a try: block. Since the input could take a ValueError, why didn't we include it in the try? I guess I'm confused as to where the error is actually taking place in the code (where the assignment doesn't happen).

1 Answer

Steven Parker
Steven Parker
229,732 Points

Since the input just brings in a string, it shouldn't produce a ValueError. However, that might happen when converting the string to a number using the int function. So only the conversion needs to be protected by the try block.