In Python, how could you check if the type of a number is an integer without checking each integer type, i.e., 'int'
, 'numpy.int32'
, or 'numpy.int64'
?
I thought to try if int(val) == val
but this does not work when a float is set to an integer value (not type).
In [1]: vals = [3, np.ones(1, dtype=np.int32)[0], np.zeros(1, dtype=np.int64)[0], np.ones(1)[0]]
In [2]: for val in vals:
...: print(type(val))
...: if int(val) == val:
...: print('{} is an int'.format(val))
<class 'int'>
3 is an int
<class 'numpy.int32'>
1 is an int
<class 'numpy.int64'>
0 is an int
<class 'numpy.float64'>
1.0 is an int
I want to filter out the last value, which is a numpy.float64
.