Python 通过all()判断列表(list)中所有元素是否都包含某个字符串(string)

枫铃3年前 (2021-09-30)Python246

之前通过比较的笨的方法,判断列表(list)中所有元素是否包含在字符串(string)中,后来发现可以用all()来判断,查找了一些资料,写出来发现很简单,下面分享一下代码。

1、判断列表(list)中,所有元素是否在集合(set)中

list_string = ['big', 'letters']
string_set = set(['hello', 'hi', 'big', 'cccc', 'letters', 'anotherword'])

result = all([word in string_set for word in list_string])
#结果是True 

2、判断列表中的每个字符串元素是否含另一个列表的所有字符串元素中

'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:579817333 
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
list_string= ['big', 'letters']
list_text = ['hello letters', 'big hi letters', 'big superman letters']
result = all([word in text for word in list_string for text in list_text]) 
#结果是False,因为'big'不在'hello letters'中。

3、如果要获取符合条件字符串,可以用 filter

list_string= ['big', 'letters']
list_text = ['hello letters', 'big hi letters', 'big superman letters']
all_words = list(filter(lambda text: all([word in text for word in list_string]), list_text ))
print(all_words) 
#['big hi letters', 'big superman letters']

相关文章

catboost原理以及Python代码

catboost原理以及Python代码

原论文: http://learningsys.org/nips17/assets/papers/paper_11.pdf catboost...

python基础教程:对象之间的交互

先看看一般的类定义如下&...

python 各层级目录下的import方法

以前经常使用python2.现在很多东西都切换到了python3,发现很多东西还是存在一些差异化的。跨目录import是常用的一种方法ÿ...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。