我想将列表转换为字典,其中键是列表中指定的整数,值是列表中数字的频率。例如,列表 = [10,10,10,20,20,40,50]那么字典就会是这样的,字典 = { '10': 3, '20': 2, '40': 1, '50': 1}。这种转换的方法是什么?
1 回答
holdtom
TA贡献1805条经验 获得超10个赞
nlist = [10,10,10,20,20,40,50]
ndict = {}
for item in set(nlist):
ndict[item] = nlist.count(item)
创建 ndict:
{40: 1, 10: 3, 20: 2, 50: 1}
添加回答
举报
0/150
提交
取消