9 Things I Regret Not Knowing About Python Exceptions Sooner
1) Exception Hierarchy Python has many built-in exceptions that we may encounter from time to time, such as ZeroDivisionError, KeyError, ValueError, TypeError, and so on. Each exception is part of an exception hierarchy — this means that most exceptions inherit from the same parent class Exception in some way. We can see this by printing … Read more