Test, czy znak to liczba ciągów Python

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