gpt4 book ai didi

python-3.x - 将嵌套列表转换为字典 | Python

转载 作者:行者123 更新时间:2023-12-04 07:22:31 24 4
gpt4 key购买 nike

我做了一个 list comprehension生成模拟指纹数据。

import random

val = [[hand, [digit, [[random.randint(1, 250) for i in range(0, 8)] for j in range(0, 4)]]] for hand in ['Left', 'Right'] for digit in ['Thumb', 'Index', 'Middle', 'Ring', 'Little']]
val
>>> [['Left',
['Thumb',
[[247, 115, 74, 161, 47, 31, 231, 34],
[246, 52, 1, 160, 196, 65, 4, 118],
[128, 219, 128, 140, 207, 2, 156, 226],
[127, 61, 56, 151, 169, 122, 117, 105]]]]
...
['Right',
['Thumb',
[[229, 222, 138, 230, 86, 119, 201, 209],
[106, 238, 191, 15, 214, 134, 77, 145],
[186, 174, 81, 143, 138, 5, 54, 148],
[176, 85, 205, 235, 228, 204, 91, 17]]]]
注:“数字”表示手指名称。
基于此列表输出,我想将其转换为以下结构的字典。
我一直无法制作 dictionary comprehension这将产生所需的输出:
{
"Left":
{
"Thumb": [...],
"Index": [...],
"Middle": [...],
"Ring": [...],
"Little": [...]
},
"Right":
{
"Thumb": [...],
"Index": [...],
"Middle": [...],
"Ring": [...],
"Little": [...]
}
}
注意:我知道我上面的字典“输出”有点不正确。

我正在使用 Jupyter Notebooks .最佳尝试:
output = {hand: {digit: matrix for i in val for hand in val[i] for digit in hand}}
output
>>> ---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-46-500095a8cf85> in <module>
----> 1 output = {hand: {digit: matrix for i in val for hand in val[i] for digit in hand}}
2 output

NameError: name 'hand' is not defined

最佳答案

您可以直接使用 dict 创建结构。理解。

import random
output = {
hand: {
digit: [
random.randint(1, 250) for _ in range(0, 8)
] for digit in ['Thumb', 'Index', 'Middle', 'Ring', 'Little']
} for hand in ['Left', 'Right']
}
print(output)
嵌套推导式的诀窍是首先创建最内部的结构,然后从那里向外工作。
所以创造你的内在 list ,
inner = [random.randint(1, 250) for _ in range(0, 8)]
那么你的 dict的数字。
digits = {digit: inner for digit in ['Thumb', 'Index', 'Middle', 'Ring', 'Little']}
最后是您的 dict的手。
hands = {hand: digits for hand in ['Left', 'Right']}
将所有这些结合在一起,你就得到了。
{
hand: {
digit: [
random.randint(1, 250) for _ in range(0, 8)
] for digit in ['Thumb', 'Index', 'Middle', 'Ring', 'Little']
} for hand in ['Left', 'Right']
}

关于python-3.x - 将嵌套列表转换为字典 | Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68411054/

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