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

Publicado em: 16 Junho 2019
no 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


Nesta página do site você pode assistir ao vídeo on-line #6 How to find String PALINDROME using PYTHON | 1000 Python Programs | Vothla Coding duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Santhosh Kumar S 16 Junho 2019, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 167 vezes e gostou 7 espectadores. Boa visualização!