“Vérifiez si une chaîne est un palindrome python” Réponses codées

Vérification palindrome en utilisant la boucle en python

p = list(input())
for i in range(len(p)):
    if p[i] == p[len(p)-1-i]:
        continue
    else:
         print("NOT PALINDROME")
         break
else:
    print("PALINDROME")
Curious Crane

chèque python palindrome

#Palindrome check
word = 'reviver'
p = bool(word.find(word[::-1]) + 1)
print(p) # True
Tejas Naik

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

Vérifiez si une chaîne est un palindrome python

5
abcdefghijklmnopqrstuvwxyz
hello
abcdefghijklmnopqrstuvwxyz
i
abcdefghijklmnopqrstuvwxyz
codeforces
qwertyuiopasdfghjklzxcvbnm
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
qwertyuiopasdfghjklzxcvbnm
abacaba
Grumpy Gentoo

Réponses similaires à “Vérifiez si une chaîne est un palindrome python”

Questions similaires à “Vérifiez si une chaîne est un palindrome python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code