Skip to content

Instantly share code, notes, and snippets.

@kellegous
Created February 14, 2016 19:29
Show Gist options
  • Save kellegous/7d62d22912439b3842e5 to your computer and use it in GitHub Desktop.
Save kellegous/7d62d22912439b3842e5 to your computer and use it in GitHub Desktop.
def parse_num(str):
try:
return int(str)
except ValueError:
pass
try:
return float(str)
except ValueError:
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment