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 trialErik Embervine
Python Development Techdegree Student 2,442 PointsIs there a reason to specify an exception type after the except keyword in an except block?
for example, is it useful for code readability? other?
except ValueError:
vs
except:
1 Answer
Steven Parker
231,248 PointsThe reason to specify a type is if you want the handler to work only when that type of exception occurs. Without the type, the handler will run on any type of exception (or any that was not already handled by a specific one).
Erik Embervine
Python Development Techdegree Student 2,442 PointsErik Embervine
Python Development Techdegree Student 2,442 Pointsthanks Steven