我有一个带有错误拼写介词的句子列表。我有一个拼写正确的preps列表:
ref_data = ['near','opposite','off','towards','behind','ahead','below','above','under','over','in','inside','outside']
我需要从我的数据中计算单词的 soundex,如果 soundex 匹配,则用我的参考词替换它。这是我的代码:
for line in text1:
for word in line.split():
if jellyfish.soundex(word)==jellyfish.soundex([words,int in enumerate(ref_data)])
word = #replace code here
我真的很困惑.. text1 包含诸如['he was nr the喷泉',...更多]之类的句子。请帮助..我的语法是错误的..