check type is float python code example
Example 1: python check if number is integer or float
>>> x = 12
>>> isinstance(x, int)
True
>>> y = 12.0
>>> isinstance(y, float)
True
Example 2: py test if is float
check_float = isinstance(25.9, float)
>>> x = 12
>>> isinstance(x, int)
True
>>> y = 12.0
>>> isinstance(y, float)
True
check_float = isinstance(25.9, float)