使用python从列表中提取特定字符

时间:2017-03-09 06:40:34

标签: python

假设我有一个来自网页的关键字列表:

>>> list(np.random.choice(list(set(x).difference(y)), _n, replace=False)) + [-1]*(n-_n) [43, 42, 9, 16, 3, 39, 14, -1]

现在我想只提取那些包含单词" analytics"使用python。

2 个答案:

答案 0 :(得分:1)

我希望这会对你有所帮助:

for items in samp:
    if 'analytics' in items:
           print(items)    #or you can append them to another list

答案 1 :(得分:0)

使用列表理解!

print [s for s in samp if 'analytics' in s.lower()]

这应该会获得列表中包含“analytics”的所有项目! 希望它有所帮助!