number = input('Введите число: ')
c = len(number) // 2
d = len(number)
o = 0
x = True
for i in number:
if (o <= c) and (i != number[d-1]) and (x == True):
x = False
o += 1
d -= 1
if x:
print('Число является перевёртышем')
else:
print('Число не является перевёртышем')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
number = input('Введите число: ')
c = len(number) // 2
d = len(number)
o = 0
x = True
for i in number:
if (o <= c) and (i != number[d-1]) and (x == True):
x = False
o += 1
d -= 1
if x:
print('Число является перевёртышем')
else:
print('Число не является перевёртышем')