gpt4 book ai didi

python - 从嵌套列表的字典理解返回字典

转载 作者:太空宇宙 更新时间:2023-11-04 07:06:31 26 4
gpt4 key购买 nike

my_list = [ [1,2], [2,3], [3,4] ]

# my attempt
output = { {'a':k[0], 'b':k[1]} for k in my_list }

#desired output
[ {a:1, b:2}, {a:2, b:3}, {a:3,b:4} ]

有没有办法让字典理解返回一个带有多个键的字典?

最佳答案

也许你想这样做:

output = [ {'a':k[0], 'b':k[1]} for k in my_list ]
# ^ ^

我们在 python 中称之为列表理解。

关于python - 从嵌套列表的字典理解返回字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42304687/

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