count = 0
temp = 0
for w in sorted(dict, key = dict.get, reverse = True):
count +=1
#print w, dict[w]
#shingles_list.append(w)
print "the total number of %s shingles found are %s " % (k,count)
我得到错误TypeError:'dict'对象不可调用。它以前工作,然后我不知道我做了什么让它停止工作。有人可以协助吗?谢谢
答案 0 :(得分:1)
您可能使用sorted
作为变量名...现在它包含一个字典,而不是引用一个函数。