Files
30-seconds-of-code/snippets/palindrome.md
2018-02-20 14:39:09 +05:30

15 lines
410 B
Markdown

### palindrome
Returns `True` if the given string is a palindrome, `False` otherwise.
Convert string `str.lower()` and use `re.sub` to remove non-alphanumeric characters from it. Then compare the new string to the reversed.
```python
def palindrome(string):
from re import sub
s = sub('[\W_]', '', string.lower())
return s == s[::-1]
```
```python
palindrome('taco cat') # True
```