私はこのコードを実行します:
def score(string, dic):
for string in dic:
word,score,std = string.lower().split()
dic[word]=float(score),float(std)
v = sum(dic[word] for word in string)
return float(v)/len(string)
そして、このエラーを取得します:
word,score,std = string.split()
ValueError: need more than 1 value to unpack