Skip to content

Instantly share code, notes, and snippets.

@pipermerriam
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save pipermerriam/9914216 to your computer and use it in GitHub Desktop.

Select an option

Save pipermerriam/9914216 to your computer and use it in GitHub Desktop.
if denom:
    x = total / denom
else:
    x = 0
try:
    x = total / denom
except ZeroDivisionError:
    x = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment