一尘不染

检查另一个字符串中的单词列表

python

我可以在python中做这样的事情:

l = ['one', 'two', 'three']
if 'some word' in l:
   ...

这将检查列表中是否存在“某些单词”。但是我可以做反向事情吗?

l = ['one', 'two', 'three']
if l in 'some one long two phrase three':
    ...

我必须检查数组中是否有某些单词在字符串中。我可以使用循环来执行此操作,但是这种方式有更多的代码行。


阅读 134

收藏
2020-12-20

共1个答案

一尘不染

if any(word in ‘some one long two phrase three’ for word in list_):

2020-12-20