gpt4 book ai didi

Python 嵌套列表操作

转载 作者:太空宇宙 更新时间:2023-11-03 13:54:29 25 4
gpt4 key购买 nike

你好所有的 python 开发者,我在玩 python 列表和 Pandas 库,但在列表操作任务中遇到了麻烦。我想根据每个嵌套列表索引 0 处的相同状态名称,将所有 test_list[i][0] 字典项合并到一个嵌套列表索引中。

示例输入:

test_list= [['Alabama', {'Baldwin County': 182265}],
['Alabama', {'Barbour County': 27457}],
['Arkansas', {'Newton County': 8330}],
['Arkansas', {'Perry County': 10445}],
['Arkansas', {'Phillips County': 21757}],
['California', {'Madera County': 150865}],
['California', {'Marin County': 252409}],
['Colorado', {'Adams County': 441603}],
['Colorado', {'Alamosa County': 15445}],
['Colorado', {'Arapahoe County': 572003}]
]

示例输出:

test_list1= [['Alabama', {'Baldwin County': 182265, 'Barbour County': 27457}],
['Arkansas', {'Newton County': 8330, 'Perry County': 10445, 'Phillips County': 21757}],
['California', {'Madera County': 150865, 'Marin County': 252409}],
['Colorado', {'Adams County': 441603, 'Alamosa County': 15445, 'Arapahoe County': 572003}]
]

我尝试了很多方法来解决这个问题,但到目前为止都没有成功。我是一名初学者 python 开发人员。感谢您提前提供帮助。

最佳答案

方法

  • 使用 collections.defaultdict作为按公共(public)字段(在本例中为按州)对数据进行分组的方法。

  • 对于每个状态,defaultdict 都会创建一个新的 dict,它会使用 dict.update() 方法进行更新。

  • 将结果转回列表,并将 list 应用于字典的项目(键/值对)。

工作代码

>>> from pprint import pprint
>>> from collections import defaultdict
>>> d = defaultdict(dict)
>>> for state, info in test_list:
d[state].update(info)

>>> result = list(d.items())
>>> pprint(result)
[('Alabama', {'Baldwin County': 182265, 'Barbour County': 27457}),
('Arkansas',
{'Newton County': 8330, 'Perry County': 10445, 'Phillips County': 21757}),
('California', {'Madera County': 150865, 'Marin County': 252409}),
('Colorado',
{'Adams County': 441603, 'Alamosa County': 15445, 'Arapahoe County': 572003})]

关于Python 嵌套列表操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58620091/

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