ответ
def palindrome(s):
if len(s) < 1:
print("Строка является палиндромом")
elif s[0] == s[-1]:
return palindrome(s[1:-1])
else:
print("Строка не является палиндромом")
s = input()
palindrome(s)
def is_palindrome(s):
return True
if s[0] == s[-1]:
return is_palindrome(s[1:-1])
return False
a = str(input("Введите строку:"))
if (is_palindrome(a) == True):
print("Данная строка палиндром!")
print("Данная строка не палиндром!")
Объяснение:
ответ
def palindrome(s):
if len(s) < 1:
print("Строка является палиндромом")
elif s[0] == s[-1]:
return palindrome(s[1:-1])
else:
print("Строка не является палиндромом")
s = input()
palindrome(s)
def is_palindrome(s):
if len(s) < 1:
return True
else:
if s[0] == s[-1]:
return is_palindrome(s[1:-1])
else:
return False
a = str(input("Введите строку:"))
if (is_palindrome(a) == True):
print("Данная строка палиндром!")
else:
print("Данная строка не палиндром!")
Объяснение: