Created
November 20, 2015 01:09
-
-
Save daleobrien/e20162cd70ec79e1b400 to your computer and use it in GitHub Desktop.
Simple way to see if a number is an int
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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