gpt4 book ai didi

python - 使用词典替换句子中的单词

转载 作者:行者123 更新时间:2023-11-28 21:43:38 25 4
gpt4 key购买 nike

<分区>

我创建了一本字典,用于将各种单词转换为基本形式。

dictionary = {'sunny': 'sun', 'banking': 'bank'}

def stemmingWords(sentence, dictionary):
for word in sentence.split():
temp = []
if word in dictionary:
word = dictionary[word]
temp.append(word)
sentence = ' '.join(temp)
return(sentence)

现在,如果打印单独的单词,它似乎可以工作。然而,当我插入一个完整的句子并且我想要这个句子的更新版本时,似乎出了点问题。例如,如果我这样做:

sentence = "the sun us shining"
new_sentence = stemmingWords(sentence, dictionary)
print(new_sentence)

给我“闪耀”。当我在看“阳光普照”的时候。

对这里出了什么问题有什么想法吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com