python check if value is not a number code example
Example 1: string is not number python
string.isnumeric()
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