gpt4 book ai didi

python - 如何使用python dict切换值和键?

转载 作者:太空狗 更新时间:2023-10-30 02:36:07 24 4
gpt4 key购买 nike

我的输入是:

files = {
'Input.txt': 'Randy',
'Code.py': 'Stan',
'Output.txt': 'Randy'
}

我希望输出为:

{'Randy':['Input.txt','Output.txt'], 'Stan':['Code.py']}

基本上是这个switch key and values in a dict of lists的另一个方向

这是我尝试过的:

dictresult= {}
for key,value in files.items():
dictresult[key]=value
dictresult[value].append(key)

但它不起作用。我得到 KeyError: 'Randy'

最佳答案

这是一个简单的方法,我们迭代原始字典 fileskeysvalues 并为每个值创建列表以附加到它所有对应于该值的键。

files = {
'Input.txt': 'Randy',
'Code.py': 'Stan',
'Output.txt': 'Randy'
}

dictresult= {}

for k, v in files.items():
if v not in dictresult:
dictresult[v] = [k]
else:
dictresult[v].append(k)

print(dictresult) # -> {'Randy': ['Output.txt', 'Input.txt'], 'Stan': ['Code.py']}

关于python - 如何使用python dict切换值和键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55706508/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com