Skip to content

Instantly share code, notes, and snippets.

@xiaom
Created February 23, 2012 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xiaom/1889972 to your computer and use it in GitHub Desktop.
Save xiaom/1889972 to your computer and use it in GitHub Desktop.
check if a string is number
def is_number(s):
try:
float(s)
return True
except ValueError:
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment