Teste se o caractere é o número Python String

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