Make a dictionary with duplicate keys in Python(在 Python 中创建一个带有重复键的字典)
问题描述
我有以下列表,其中包含具有不同值的重复汽车注册号.我想把它转换成一个接受这多个汽车登记号码键的字典.
I have the following list which contains duplicate car registration numbers with different values. I want to convert it into a dictionary which accepts this multiple keys of car registration numbers.
到目前为止,当我尝试将列表转换为字典时,它消除了其中一个键.如何制作带有重复键的字典?
So far when I try to convert list to dictionary it eliminates one of the keys. How do I make a dictionary with duplicate keys?
名单是:
EDF768, Bill Meyer, 2456, Vet_Parking
TY5678, Jane Miller, 8987, AgHort_Parking
GEF123, Jill Black, 3456, Creche_Parking
ABC234, Fred Greenside, 2345, AgHort_Parking
GH7682, Clara Hill, 7689, AgHort_Parking
JU9807, Jacky Blair, 7867, Vet_Parking
KLOI98, Martha Miller, 4563, Vet_Parking
ADF645, Cloe Freckle, 6789, Vet_Parking
DF7800, Jacko Frizzle, 4532, Creche_Parking
WER546, Olga Grey, 9898, Creche_Parking
HUY768, Wilbur Matty, 8912, Creche_Parking
EDF768, Jenny Meyer, 9987, Vet_Parking
TY5678, Jo King, 8987, AgHort_Parking
JU9807, Mike Green, 3212, Vet_Parking
我试过的代码是:
data_dict = {}
data_list = []
def createDictionaryModified(filename):
path = "C:UsersuserDesktop"
basename = "ParkingData_Part3.txt"
filename = path + "//" + basename
file = open(filename)
contents = file.read()
print contents,"
"
data_list = [lines.split(",") for lines in contents.split("
")]
for line in data_list:
regNumber = line[0]
name = line[1]
phoneExtn = line[2]
carpark = line[3].strip()
details = (name,phoneExtn,carpark)
data_dict[regNumber] = details
print data_dict,"
"
print data_dict.items(),"
"
print data_dict.values()
推荐答案
Python 字典不支持重复键.一种解决方法是将列表或集合存储在字典中.
Python dictionaries don't support duplicate keys. One way around is to store lists or sets inside the dictionary.
实现此目的的一种简单方法是使用 defaultdict
:
One easy way to achieve this is by using defaultdict
:
from collections import defaultdict
data_dict = defaultdict(list)
你所要做的就是替换
data_dict[regNumber] = details
与
data_dict[regNumber].append(details)
你会得到一个列表字典.
and you'll get a dictionary of lists.
这篇关于在 Python 中创建一个带有重复键的字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Python 中创建一个带有重复键的字典


基础教程推荐
- 在 Python 中将货币解析为数字 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01