概述
定期整理点滴,完善自己,今后给洋哥挣钱,陪伴着让我的小宝贝发自内心爱上笑,加油吧
数组排序
import heapq
nums = [10, 2, 9, 100, 80]
print(heapq.nlargest(3, nums))
print(heapq.nsmallest(3, nums))
students = [
{'names': 'CC', "score": 100, 'height': 189},
{'names': 'BB', "score": 10, 'height': 169},
{'names': 'AA', "score": 80, 'height': 179}
]
print(heapq.nsmallest(2, students, key=lambda x: x['height']))
这个库非常好用,尤其取列表头部数据,最大几个,最小几个经常用到
运行结果
[100, 80, 10]
[2, 9, 10]
[{‘names’: ‘BB’, ‘score’: 10, ‘height’: 169}, {‘names’: ‘AA’, ‘score’: 80, ‘height’: 179}]
2018.09.27 于广州
最后
以上就是懦弱大叔为你收集整理的Python 数组排序的全部内容,希望文章能够帮你解决Python 数组排序所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复