python如何实现元组和列表的转换_Python如何将字典列表转换为元组列表

1586010002-jmsa.png

I have a list of dict that looks like this:

list=[{u'hello':['001', 3], u'word':['003', 1], u'boy':['002', 2]},

{u'dad':['007', 3], u'mom':['005', 3], u'honey':['002', 2]} ]

What I need is to iterate on my list in order to create list of tuples like this:

new_list=[('hello','001', 3), ('word','003',1), ('boy','002', 2)

('dad','007',3), ('mom', '005', 3), ('honey','002',2)]

NOTE! the numbers with the zeros ('001',003'... and so on) must be considerated as a string.

Is there anybody whom can help me?

解决方案

You can use list comprehension for that:

new_list = [(key,)+tuple(val) for dic in list for key,val in dic.items()]

Here we iterate over all dictonaries in list. For every dictionary we iterate over its .items() and extract the key and value and then we construct a tuple for that with (key,)+val.

Whether the values are strings or not is irrelevant: the list comprehension simply copies the reference so if the original elements were Foos, they remain Foos.

Finally note that the dictionaries are unordered, so the order is undetermined. However if a dictionary d1 occurs before a dictionary d2, all the elements of the first will be placed in the list before the tuples of the latter. But the order of tuples for each individual dictionary is not determined.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值