1. 程式人生 > >python的collections應用為字典哈希

python的collections應用為字典哈希

pre clas ons light pri highlight default div ict

import collections
allNum=collections.defaultdict(int)
allNum[1]+=1
allNum[5]+=1
print(allNum)

  當然,defaultdict裏面的int,可以換為list,dict等等

換list則為:allNum[1].append(1)即:allNum[key].append(value)

python的collections應用為字典哈希