如何循环处理能把停用词去掉
d3=[['鲍勃', '库西'],
['奖归', '谁'],
['属', '?'],
[ ' ', 'NCAA', '最强', '控卫']]


file_path=open(r'stop_words.txt',encoding='utf-8')
stop_words = file_path.read()
new_cut1 = []
for i in [0,999]:
for word in d3[i]:
if word not in stop_words:
new_cut1.append(word)
new_cut1=[name for name in new_cut1 if len(name) > 1]
new_cut1