tester si le caractère est un numéro de chaîne Python

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