gpt4 book ai didi

python - if 形式出现异常 : TypeError: unhashable type: 'list' in Python nltk

转载 作者:行者123 更新时间:2023-12-01 02:54:12 24 4
gpt4 key购买 nike

我收到以下错误。

 if form in exceptions: TypeError: unhashable type: 'list'

以下是我的代码。

from nltk.tokenize import word_tokenize
from nltk.stem.wordnet import WordNetLemmatizer

sentence = 'missed you'
w_tokenize = (word_tokenize(sentence))

for word in w_tokenize:
print WordNetLemmatizer().lemmatize(w_tokenize,'v')

谁能告诉我如何修复这个错误。

最佳答案

看起来你把变量搞混了,应该是

for word in w_tokenize:
print WordNetLemmatizer().lemmatize(word,'v')

关于python - if 形式出现异常 : TypeError: unhashable type: 'list' in Python nltk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44390198/

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