简体   繁体   中英

How to test if a list of strings are palindromes using list comprehension or slicing?

I am trying to test if a list of strings are palindromes using list comprehension or slicing. I converted str1 to list using word_list=str1.split() . However, the palindrome test,

word=[w for w in word_list if w[0:9:1]==w[0:9:1][::-1]]

works for only the first word. Since the words have different lengths, I am wondering if there are concise way of writing the code without using common loops?

str1='avallava si padre emirime'

@Chris_Rands answer solved the problem. word=[w for w in word_list if w==w[::-1]]

The line below iterates through word_list, keeps the words which are palindromes and stores them as a list.

palindromes = [w for w in word_list if w == w[::-1]]

If world_list = ['avallava', 'si', 'padre', 'emirime'] ,

then palindromes = ['avallava', 'emirime']

a=['aba','abc','lil','ozx'] b=[] for i in a: if i==i[::-1]: b.append(i)

print(b)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM