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 raise exception rather than using a simple loop?

I approached the problem of user inputting letters rather than digits with the following code immediately before the line converting the input to an integer:

while not number_tickets.isdigit():
    number_tickets = input("Enter only numeric digits:  ")

That worked fine and didn't force the user to enter their name again. What is the advantage of using the "raise ValueError" approach instead?

1 Answer

Steven Parker
Steven Parker
229,644 Points

I doubt most of the course examples are meant to be taken as the best or only strategy for addressing a certain need. They are just picked as ways to illustrate the use of the technique being introduced.

The fact that you're thinking of effective alternative strategies is evidence of your learning progress and grasp of the material. Good job! :+1: