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.

Quinten Rowland
1,310 PointsWhy are we using "as" followed by err?
My code is working perfectly fine without it, even when presented with a ValueError. Adding this detail doesn't seem to change a single thing for me. I just don't get the point, can someone explain?
1 Answer

Dorde Krstic
1,775 PointsThe as keyword is used to create an alias.
We give that ValueError the alias of err and then use it if we want to print that error out.
Please correct me if I'm wrong.
xajx
6,553 Pointsxajx
6,553 PointsI am also confused about why we should use an alias for the ValueError. The code may work if the user enters a bigger value(numtickets) than (tickets_remaining) however when the user types a string again when asked how many tickets, it will show the phrase "invalid literal for int() with base 10". Isn't that what we're trying to avoid that's why we wrote the except block in the first place?