Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
try:
ratio = a / b
except ZeroDivisionError:
ratio = float(‘inf’)
except TypeError as e:
logger.critical(‘Got TypeError: %s’, e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment