Convert tuple of tuples to a dictionary with key value pair(将元组的元组转换为具有键值对的字典)
本文介绍了将元组的元组转换为具有键值对的字典的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下元组:
tuples=((32, 'Network architectures', 5), (33, 'Network protocols', 5))
我怎样才能把它变成这样的字典列表
How could I turn it into a list of dictionary like this
dict=[ {"id": 32, "name": "Network architectures", "parent_id": 5}, {"id": 33, "name": "Network protocols", "parent_id": 5}]
推荐答案
如下使用列表推导式.首先创建一个对所有元组重复的键列表.然后只需使用 zip
创建单独的字典.
Using a list comprehension as follows. First create a list of keys which will repeat for all the tuples. Then just use zip
to create individual dictionaries.
tuples=((32, 'Network architectures', 5), (33, 'Network protocols', 5))
keys = ["id", "name", "parent_id"]
answer = [{k: v for k, v in zip(keys, tup)} for tup in tuples]
# [{'id': 32, 'name': 'Network architectures', 'parent_id': 5},
# {'id': 33, 'name': 'Network protocols', 'parent_id': 5}]
这篇关于将元组的元组转换为具有键值对的字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:将元组的元组转换为具有键值对的字典


猜你喜欢
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01