“Überprüfen Sie, ob eine Schnur ein palindrome Python ist” Code-Antworten

Palindrome check verwendet, um für Schleife in Python zu sein

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

Python Palindrome Check

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

Palindrome Wörter 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

Überprüfen Sie, ob eine Schnur ein palindrome Python ist

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

Ähnliche Antworten wie “Überprüfen Sie, ob eine Schnur ein palindrome Python ist”

Fragen ähnlich wie “Überprüfen Sie, ob eine Schnur ein palindrome Python ist”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen