作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个字典列表:
dictionaries = [
{'id': 1, 'name': 'test1', 'description': 'foo'},
{'id': 2, 'name': 'test2', 'description': 'bar'}
]
我想将每个字典中的值与键分开,制作一个如下所示的列表:
[(1 ,'test1', 'foo'), (2, 'test2', 'bar')]
我有以下代码来执行此操作...
values_list = []
for dict in dictionaries:
values_list.append(list(dict.values()))
当我在我的应用程序中运行此代码时,我得到:
TypeError: list() takes 0 positional arguments but 1 was given
进行这种类型的列表理解的正确方法是什么?
最佳答案
这可以通过几个 comprehensions 来完成像:
def get_values_as_tuple(dict_list, keys):
return [tuple(d[k] for k in keys) for d in dict_list]
这是如何工作的?这是一个嵌套的comprehension 。让我们从内到外开始:
tuple(d[k] for k in keys)
这将创建一个包含 d
中所有元素的元组,这些元素是通过 keys
中的 k
指定的。所以,这很好,但是 d
、k
和 keys
到底是什么?
keys
被传递给函数,并且是我们将在字典中查找的键。
k
是 keys
中的各个值,来自 keys
中的 k。
d
是 dict_list
中来自 d in dict_list
的各个字典。
外部理解构建了上面讨论的元组列表:
[tuple(d[k] for k in keys) for d in dict_list]
dictionaries = [{'id': 1, 'name': 'test1', 'description': 'foo'},
{'id': 2, 'name': 'test2', 'description': 'bar'}]
def get_values_as_tuple(dict_list, keys):
return [tuple(d[k] for k in keys) for d in dict_list]
print(get_values_as_tuple(dictionaries, ('id', 'name', 'description')))
[(1, 'test1', 'foo'), (2, 'test2', 'bar')]
关于python - 如何从字典中提取值并从中创建列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48514315/
这个问题在这里已经有了答案: Is a moved-from vector always empty? (4 个答案) 关闭 4 年前。 从 std::vector move 数据后,它的容量是否必
我是一名优秀的程序员,十分优秀!