Skip to content

Instantly share code, notes, and snippets.

@sepulchered
Created November 7, 2017 20:59
Show Gist options
  • Save sepulchered/09afd8c6e1aed477819097e36d6ff26f to your computer and use it in GitHub Desktop.
Save sepulchered/09afd8c6e1aed477819097e36d6ff26f to your computer and use it in GitHub Desktop.
def maybe(fn, *args, **kwargs):
try:
return fn(*args, **kwargs)
except Exception:
return None
def divide(num, den):
return num / den
print(maybe(divide, 1, 2))
print(maybe(divide, 1, 0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment