Skip to content

Instantly share code, notes, and snippets.

@santiagobasulto
Last active January 15, 2017 20:37
Show Gist options
  • Save santiagobasulto/3b1767a001851ad2d6cb8938b265482d to your computer and use it in GitHub Desktop.
Save santiagobasulto/3b1767a001851ad2d6cb8938b265482d to your computer and use it in GitHub Desktop.
def which_type(obj):
if isinstance(obj, int):
return 'integer'
elif isinstance(obj, str):
return 'string'
elif isinstance(obj, bool):
return 'boolean'
elif isinstance(obj, float):
return 'float'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment