“mots palindrome python” Réponses codées

palindrome python

def palindrome(a):
    return a == a[::-1]

palindrome('radar') 		# True
VasteMonde

palindrome Checker Python

value = input("Enter a Word: ")

if value == value[::-1] :
    print(value)
    print(value[::-1])
    print("THIS WORD IS A PALINDROME")
else :
    print(value)
    print(value[::-1])
    print("THIS WORD IS NOT A PALINDROME")
Trojan Horse

mots palindrome python

mes=input("Enter the word and see if it is palindrome ")
if mes==mes[::-1]:
    print("This word is palindrome")
else:
    print("This word is not palindrome")
Zany Zebra

Réponses similaires à “mots palindrome python”

Questions similaires à “mots palindrome python”

Plus de réponses similaires à “mots palindrome python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code