gpt4 book ai didi

python - 使用每个元组的关键部分将元组列表转换为字典

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

如何用 python 方式完成:)

results = [(1,2,3), (2,5,6), (7,8,9)] 
results_set = {}
for r in results:
results_set[(r[0], r[1])] = r[2]
return results_set

最佳答案

使用 dictionary comprehension :

results = [(1,2,3), (2,5,6), (7,8,9)] 

print({(x, y) : z for x, y, z in results})

输出

{(1, 2): 3, (2, 5): 6, (7, 8): 9}

关于python - 使用每个元组的关键部分将元组列表转换为字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59156245/

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