Python -Überprüfung, ob der Charakter Buchstabe ist

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