-5

我试图简单地为 nltk 分类一些单词:

contains(want) = True positi : negati = 1.7 : 1.0
contains(great) = True positi : negati = 1.7 : 1.0
contains(love) = False negati : positi = 1.4 : 1.0
contains(die) = False positi : negati = 1.2 : 1.0
contains(live) = False negati : positi = 1.2 : 1.0
contains(terrible) = False positi : negati = 1.2 : 1.0

但是它给了我一个语法错误positi

4

1 回答 1

2

您绝对应该掌握基本的 Python 语法。我想你真正想要的是这样的:

if contains('want'): positi, negati = 1.7, 1.0

当返回一个 True 值时,这将分配1.7positi1.0给。我假设, etc. 在这里不是变量名,而应该是文字字符串。negaticontains('want')wantgreater

于 2013-09-16T07:16:52.807 回答