Skip to content

Instantly share code, notes, and snippets.

@daleobrien
Created November 20, 2015 01:09
Show Gist options
  • Save daleobrien/e20162cd70ec79e1b400 to your computer and use it in GitHub Desktop.
Save daleobrien/e20162cd70ec79e1b400 to your computer and use it in GitHub Desktop.
Simple way to see if a number is an int
if isinstance(o, decimal.Decimal):
if o % 1 > 0:
return float(o)
else:
return int(o)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment