“Comment vérifier une chaîne est palindrome ou pas en python” Réponses codées

comment imprimer palindrome en 100 entre 250 en python

>>> def isPalindrome(s):
    ''' check if a number is a Palindrome '''
    s = str(s)
    return s == s[::-1]

>>> def generate_palindrome(minx,maxx):
    ''' return a list of Palindrome number in a given range '''
    tmpList = []
    for i in range(minx,maxx+1):
        if isPalindrome(i):
            tmpList.append(i)

    return tmpList

>>> generate_palindrome(1,120)

[1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 66, 77, 88, 99, 101, 111]
Disgusted Dingo

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

Comment vérifier une chaîne est palindrome ou pas en python

s = "001100"

if s == s[::-1]:
    print(s, "is a Palindrome string.")
else:
    print("Not a palindrome string.")

    
Excited Earthworm

chaîne python palindrome

s = "001100"

if s == s[::-1]:
    print("palindrome string")
else:
    print("Not a palindrome string.")
Excited Earthworm

Réponses similaires à “Comment vérifier une chaîne est palindrome ou pas en python”

Questions similaires à “Comment vérifier une chaîne est palindrome ou pas en python”

Plus de réponses similaires à “Comment vérifier une chaîne est palindrome ou pas en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code