------
## 最终结论
```python
def is_palindrome(text: str):
    text = ''.join(char.lower() for char in text if char.isalpha())
    return text == text[::-1]
```