Como usar o python all () função para verificar se há letras em uma string usando todas as funções

s = "Adsjdsjdsjdsjdfs"
res = [char.isalpha() for char in s]
print(all(res))
Excited Earthworm