check if string is numeric python code example

Example 1: python check if number

if type(variable) == int or type(variable) == float:
    isNumber = True

Example 2: is number python

var.isdigit()
#return true if all the chars in the string are numbers
#return false if not all the chars in the string are numbers

Example 3: test if character is number python string

>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True

Example 4: how to check if digit in int python

s = set(str(4059304593))
print('2' in s)