gpt4 book ai didi

python - 如何将列表中的相应元素分别添加到python字典键和值中

转载 作者:太空宇宙 更新时间:2023-11-03 14:28:18 25 4
gpt4 key购买 nike

<分区>

我有两个相同长度的列表和一个字典

list1 = ['hello', 'goodbye', 'no', 'yes', 'if you say so']
list2 = ['a', 'b', 'c', 'd; e; f', 'g']
listDict = {}

我想分别添加相应的值作为键和值,所以字典的输出应该是这样的(顺序应该保持不变)

listDict = {'hello':'a', 'goodbye':'b', 'no':'c', 'yes':'d; e; f', 'if you say so':'g'}

我试过了

for words in list1:
for letters in list2:
listDict[words]=[letters]

但这给出了不正确的结果(我无法理解)。我怎样才能得到如上所述的输出?

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