“Palindrome Python Python” Código de respuesta

Python Palindrome

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

Palindrome Python 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

Respuestas similares a “Palindrome Python Python”

Preguntas similares a “Palindrome Python Python”

Más respuestas relacionadas con “Palindrome Python Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código