#6 How to find String PALINDROME using PYTHON | 1000 Python Programs | Vothla Coding

Publicado el: 16 junio 2019
en el canal de: Santhosh Kumar S
167
7

Please find the source Code Below:
METHOD #1

a = "abbba"
b = ''

for _ in a:
b = _ + b
print(b)

if a == b:
print('It is a Palindrome')
else:
print('It is not a Palindrome')

--------------------------------------------------------------------------------------------
METHOD #2

a = "ZaabbaaZ"

b = a[::-1]


if a == b:
print('It is a Palindrome')
else:
print('It is not a Palindrome')
--------------------------------------------------------------------------------------------

Please do Subscribe to my channel:
Click Here : https://goo.gl/TfKhfv

Stay Connected:
Instagram :   / imsanthoshkumars  
Twitter :   / msanthoshkumars  
Facebook :   / imsanthoshkumars  


#VothlaCoding #1000PythonPrograms #VothlaSanthosh


En esta página del sitio puede ver el video en línea #6 How to find String PALINDROME using PYTHON | 1000 Python Programs | Vothla Coding de Duración hora minuto segunda en buena calidad , que subió el usuario Santhosh Kumar S 16 junio 2019, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 167 veces y le gustó 7 a los espectadores. Disfruta viendo!