TypeError:'dict'对象在输出中不可调用

时间:2015-09-06 22:52:41

标签: python dictionary

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'对象不可调用。它以前工作,然后我不知道我做了什么让它停止工作。有人可以协助吗?谢谢

1 个答案:

答案 0 :(得分:1)

您可能使用sorted作为变量名...现在它包含一个字典,而不是引用一个函数。