gpt4 book ai didi

python - 在嵌套字典中获取特定键值的优雅方法?

转载 作者:行者123 更新时间:2023-11-28 22:56:08 24 4
gpt4 key购买 nike

我在 Python 中有一个嵌套字典。我可以像这样访问 A 元素:

D[0]['detLog'][n]['A']

其中 n 是从 0 到 detLog 的长度...在 Matlab 中我可以使用这样的东西:

D[0]['detLog'][:]['A']

: 意思是“对于所有元素”。

Python 中有类似的东西吗?

最佳答案

是的,使用 list comprehension :

[d['A'] for d in D[0]['detLog']]

对于使用 Python 进行的科学计算,您可能还想查看 NumPySciPy ,特别是 NumPy for Matlab users文档。

关于python - 在嵌套字典中获取特定键值的优雅方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16034954/

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