python将数据分类_Python如何将数据库导出的数据一级级分类?

这篇博客探讨了如何使用Python对从数据库导出的数据进行高效的一级级分类,包括按时间、ID和类型进行分组。示例代码展示了在大数据量下如何组织和操作数据,以达到理想的时间复杂度。
摘要由CSDN通过智能技术生成

lst = [{'time': '2016-10-25', 'id': 'a1', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-25', 'id': 'a1', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-25', 'id': 'a2', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-25', 'id': 'a2', 'type': '2', 'details': 'xxx'},

{'time': '2016-10-26', 'id': 'a1', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-26', 'id': 'a1', 'type': '2', 'details': 'xxx'},

{'time': '2016-10-26', 'id': 'a2', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-26', 'id': 'a2', 'type': '2', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a1', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a1', 'type': '1', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a2', 'type': '2', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a2', 'type': '2', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a2', 'type': '3', 'details': 'xxx'},

{'time': '2016-10-27', 'id': 'a2', 'type': '3', 'details': 'xxx'}]

结果:

lst = [{'time': '2016-10-25', 'data': [{'id': 'a1', 'data': [{'type': '1', 'data': [{'details': 'xxx'}, {'details': 'xxx'}]}]},

{'id': 'a2', 'data': [{'type': '1', 'data': [{'details': 'xxx'}]},

{'type': '2', 'data': [{'details': 'xxx'}]}]}]},

{'time': '2016-10-26', 'data': [{'id': 'a1', 'data': [{'type': '1', 'data': [{'details': 'xxx'}]},

{'type': '2', 'data': [{'details': 'xxx'}]}]},

{'id': 'a2', 'data': [{'type': '1', 'data': [{'details': 'xxx'}]},

{'type': '2', 'data': [{'details': 'xxx'}]}]}]},

{'time': '2016-10-27', 'data': [{'id': 'a1', 'data': [{'type': '1', 'data': [{'details': 'xxx'}, {'details': 'xxx'}]}]},

{'id': 'a2', 'data': [{'type': '2', 'data': [{'details': 'xxx'}, {'details': 'xxx'}]},

{'type': '3', 'data': [{'details': 'xxx'}, {'details': 'xxx'}]}]}]}]

就是对列表中的数据进行一级级分类,原始数据是随机的,先按time分类,后面按id,然后type分类,每一级的数据都放在data的下,data是一个列表

真实的数据量比较大,怎么高效写这段程序?Python代码,谢谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值