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

except valueerror as err problem

https://w.trhou.se/fq06x5ke1n

On line 14 and 15 I can see what seems to be a placeholder or infact very similar to a function parameter. I took err out and used qqq in both circumstances and works just as well. question is what is that err for? In both instances?

A very good exercise Craig, I've been away ill for a year and occasionally was reading python material, followed your lesson today and thoroughly enjoyed it.

Thanks

1 Answer

Steven Parker
Steven Parker
229,644 Points

The term "err" is just a variable name, you can use any name you like instead. Naming it "err" is just a common practice.

The variable you specify after "as" will be assigned an object when the exception occurs that will contain information about the exception, including a string describing the cause. For more details, see the Handling Exceptions section of the Python online documentation.