Skip to content

Instantly share code, notes, and snippets.

@mrf345
Created October 23, 2017 15:40
Show Gist options
  • Save mrf345/740944cb296789346de5ef527112af25 to your computer and use it in GitHub Desktop.
Save mrf345/740944cb296789346de5ef527112af25 to your computer and use it in GitHub Desktop.
isInt the right way python3
def isInt(inp):
return isinstance(inp, int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment