Why should one avoid using generic 'except' statements that catch all errors?

Why should one avoid using generic 'except' statements that catch all errors?



Answer: It's lazy, and can hide errors from exceptions that haven't been considered.


Learn More :