## Explanation Exceptions and error cases should be handled early to prevent deeply-nested code. ## Example ``` # Bad if cond: a b c else: raise Exception # Good if not cond: raise Exception a b c ```