最佳答案
我可以在巨蟒里做这样的事情:
l = ['one', 'two', 'three']
if 'some word' in l:
...
这将检查列表中是否存在“某个单词”。但是我可以做反向操作吗?
l = ['one', 'two', 'three']
if l in 'some one long two phrase three':
...
我必须检查字符串中是否有一些来自 array 的单词。我可以使用循环来完成这项工作,但是这种方法有更多的代码行。