Skip to content

Instantly share code, notes, and snippets.

@techstackmedia
Created September 19, 2019 13:33
Show Gist options
  • Save techstackmedia/91d393918271d549039374290e55444f to your computer and use it in GitHub Desktop.
Save techstackmedia/91d393918271d549039374290e55444f to your computer and use it in GitHub Desktop.
x = 4.5
x.is_integer()
# False
x = 4.0
x.is_integer()
# True
type(x.is_integer)
# <class 'builtin_function_or_method'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment