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 中创建一个带有重复键的字典


- 如何将一个类的函数分成多个文件? 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- 沿轴计算直方图 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01