我有一个单词列表(即):
['bad', 'good', 'smart']
我需要找到文件中哪些行包含 all 该行中的那些单词。我试过了:
for line in file_text:
if [w for w in list] in line:
print(line)
但是我收到以下错误:
TypeError: 'in <string>' requires string as left operand, not list
这是一种简单的pythonic方法吗?