Python按照list dict key进行排序过程解析
在做项目的时候,遇到这样的数据:
"trends": [ { "name": "Rick Gates", "promoted_content": null, "query": "%22Rick+Gates%22", "tweet_volume": 135732, "url": "http://twitter.com/search?q=%22Rick+Gates%22" }, { "name": "#TheBachelorette", "promoted_content": null, "query": "%23TheBachelorette", "tweet_volume": 91245, "url": "http://twitter.com/search?q=%23TheBachelorette" }, { "name": "#KremlinAnnex", "promoted_content": null, "query": "%23KremlinAnnex", "tweet_volume": 42654, "url": "http://twitter.com/search?q=%23KremlinAnnex" }, { "name": "#LHHH", "promoted_content": null, "query": "%23LHHH", "tweet_volume": 35252, "url": "http://twitter.com/search?q=%23LHHH" }]
我需要做的就是根据tweet_volume的数值对trends里的元素进行排序。
实现代码:
把上面数据以字典的方式获取,相当于把取出的就是后面的列表,即
trends=[ { "name": "Rick Gates", "promoted_content": null, "query": "%22Rick+Gates%22", "tweet_volume": 135732, "url": "http://twitter.com/search?q=%22Rick+Gates%22" }, { "name": "#TheBachelorette", "promoted_content": null, "query": "%23TheBachelorette", "tweet_volume": 91245, "url": "http://twitter.com/search?q=%23TheBachelorette" }, { "name": "#KremlinAnnex", "promoted_content": null, "query": "%23KremlinAnnex", "tweet_volume": 42654, "url": "http://twitter.com/search?q=%23KremlinAnnex" }, { "name": "#LHHH", "promoted_content": null, "query": "%23LHHH", "tweet_volume": 35252, "url": "http://twitter.com/search?q=%23LHHH" }] trends = sorted(trends,key = lambda e:e['tweet_volume'],reverse = True)
考虑到有些数据是NULL,因此需要提前做个处理,对于空的tweet_volume设置为0,完整代码:
for item in trends: if(item.get('tweet_volume') is None): item['tweet_volume'] = 0 trends = sorted(trends,key = lambda e:.get('tweet_volume') ,reverse = True)
建议用get方式获取,空值或数据不存在这样不会报错。
在Python文档中看到一种性能更高的方法
通过使用 operator 模块的 itemgetter 函数,可以非常容易的排序这样的数据结构
因此上面的程序可以改写成
from operator import itemgetter for item in trends: if(item.get('tweet_volume') is None): item['tweet_volume'] = 0 trends = sorted(trends,key = itemgetter('tweet_volume'),reverse = True)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
PyCharm 2020.2下配置Anaconda环境的方法步骤
这篇文章主要介绍了PyCharm 2020.2下配置Anaconda环境的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-09-09从源码解析Python的Flask框架中request对象的用法
Flask中的request对象发送请求使用起来十分方便,但也有一些需要注意的地方,这里我们来从源码解析Python的Flask框架中request对象的用法,需要的朋友可以参考下.2016-06-06Python报错ValueError: cannot convert float NaN to intege
在Python编程中,我们经常需要处理各种数据类型,包括浮点数和整数,然而,有时候我们可能会遇到一些意外的情况,比如将一个包含NaN(Not a Number)的浮点数转换为整数时,就会抛出错误,本文将探讨这个错误的原因,并给出几种可能的解决方案,需要的朋友可以参考下2024-09-09
最新评论