“Verifique se uma string é um python palíndroma” Respostas de código

Verificação de palíndroma usando o loop em 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

Verificação do Python Palindrome

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

Palavras Palíndrome 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

Verifique se uma string é um python palíndroma

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

Respostas semelhantes a “Verifique se uma string é um python palíndroma”

Perguntas semelhantes a “Verifique se uma string é um python palíndroma”

Procure respostas de código populares por idioma

Procurar outros idiomas de código