how to check is number is int in python code example
Example 1: py test if is float
check_float = isinstance(25.9, float)
Example 2: how to check value is integer or not in python
f = 1.23
print(f.is_integer())
# False
f_i = 100.0
print(f_i.is_integer())
# True