python verifique se o personagem é uma carta

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