how check if character is integer python code example
Example 1: test if character is number python string
>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
Example 2: how to check if digit in int python
s = set(str(4059304593))
print('2' in s)
>>> 'A'.isdigit()
False
>>> '1'.isdigit()
True
s = set(str(4059304593))
print('2' in s)