我正在使用开源 Python 代码。我认为它是为 Python 2 编写的,当我在 Python3.3 中运行它时出现此错误:
TypeError: must use keyword argument for key function
指向这些代码行:
probs = [(word, pool[word]) for word in words if word in pool]
probs.sort(lambda x,y: cmp(y[1],x[1]))
代码的类似部分:
for pname, pprobs in pools.items():
p = self.getProbs(pprobs, tokens)
if len(p) != 0:
res[pname] = self.combiner(p, pname)
res = res.items()
res.sort(lambda x,y: cmp(y[1], x[1]))
给出同样的错误。
我是 Python 的初学者,所以如果有人能告诉我应该如何更改代码,我将不胜感激。