check the no is number in python code example
Example 1: python check if number
if type(variable) == int or type(variable) == float:
isNumber = True
Example 2: check integer number python
N.is_integer()
Example 3: python is integer
(1.23).is_integer() # Returns false