how to check if a number is a int or float code example
Example: 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