Files
cours/recursivite/exercice_MJoannic/palindrom.py
2024-11-30 21:20:08 +01:00

13 lines
286 B
Python

def is_palindrom(word)->bool:
word = list(word)
if len(word) < 2:
return True
if word[0] == word[-1]:
word.pop(0)
word.pop(-1)
return is_palindrom(word)
else:
return False
print(is_palindrom("do geese see god".replace(' ', '')))