标签:append python list key def pre highlight val app
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)
标签:append python list key def pre highlight val app
原文地址:https://www.cnblogs.com/tangmiao/p/9936224.html