gpt4 book ai didi

python - 将 Python 字典和列表压缩在一起

转载 作者:行者123 更新时间:2023-11-28 20:03:21 25 4
gpt4 key购买 nike

是否可以将 python 字典和列表压缩在一起?

例如:

dict = {'A':1, 'B':2, 'C':3}
num_list = [1, 2, 3]
zipped = zip(dict, num_list)

然后我想做这样的事情:

for key, value, num_list_entry in zipped:
print key
print value
print num_list_entry

我还没有找到解决方案,所以我想知道我该怎么做?

最佳答案

您可以使用 iteritems()

dictionary = {'A':1, 'B':2, 'C':3}
num_list = [1, 2, 3]
zipped = zip(dictionary.iteritems(), num_list)

for (key, value), num_list_entry in zipped:
print key
print value
print num_list_entry

关于python - 将 Python 字典和列表压缩在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41624308/

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