如何以特定方式遍历字典?

时间:2019-05-15 20:33:23

标签: python loops dictionary iterator iteration

我正在尝试以特定方式遍历字典。 假设我的字典是这样的:

d={'MERRY': [12996, 13225, 18225, 20449, 24336, 27556, 27889, 34225, 46225,
             52441, 61009, 62001, 63001, 64009, 70225, 73441, 81225],
   'XMAS': [1024, 1089, 1296, 1369, 1764, 1849, 1936, 2304, 2401, 2601, 2704,
            2809, 2916, 3025, 3249, 3481,3721, 4096, 4356, 4761, 5041, 5184,
            5329, 5476, 6084, 6241, 6724, 7056, 7396, 7569, 7921, 8649, 9025,
            9216, 9604, 9801],
   'TO': [16, 25, 36, 49, 64, 81],
   'ALL': [100, 144, 400, 900]}

首先,我要检查组合:

12996 1024 16 100,
12996 1024 16 144,
12996 1024 16 400,
12996 1024 16 900,

之后:12966 1024 25 100

我需要检查所有可能的组合。我也可以采用另一种解决方案。

我尝试使用很多for循环手动进行操作,并且可行。

该代码适用于此示例,但是我需要将其扩展为最多包含10个键的字典。我不知道该如何解决。

此代码显示了具有4个键的字典的示例:

for item in d['MERRY']:
    for item2 in d['XMAS']:
        for item3 in d['TO']:
            for item4 in d['ALL']:
                #make something out of items1,2,3 and 4
                if something == somethingelse:
                    #print(something)

1 个答案:

答案 0 :(得分:1)

尝试一下(对@Prune的补充):

from itertools import product
[p for p in product(*d.values())]

product()给您带来了可迭代的机会。如果您不想立即将迭代器炸成一个列表,请跳过列表理解。