Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python check if number is float or int

# check if a number is int or float

isinstance(x, int) # integer
isinstance(x, float) # float

import numbers
isinstance(x, numbers.Integral) # Long Int
 
PREVIOUS NEXT
Tagged: #python #check #number #float #int
ADD COMMENT
Topic
Name
3+8 =