当前位置:   article > 正文

Python基础教程之十一:找到最大的N个(前N个)或最小的N个项目

Python基础教程之十一:找到最大的N个(前N个)或最小的N个项目

Python示例使用heapq库中的**nlargest()nsmallest()**函数从元素集合中找到最大(或最小)的N个元素。

1.使用heapq模块的nlargest()和nsmallest()

Python heapq模块可用于从集合中查找N个最大或最小的项目。它有两个功能可帮助–

  1. nlargest()
  2. nsmallest()
1.1。在简单的可迭代对象中查找项目

example1.py

  1. >>> import heapq
  2. >>> nums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
  3. print(heapq.nlargest(3, nums)) 
  4. >>> [42, 37, 23]
  5. print(heapq.nsmallest(3, nums))
  6. >>> [-4, 1, 2]
1.2。查找复杂的可迭代项

example2.py

  1. >>> portfolio =
  2. [
  3. {'name': 'IBM', 'shares': 100, 'price': 91.1},
  4. {'name': 'AAPL', 'shares': 50, 'price': 543.22},
  5. {'name': 'FB', 'shares': 200, 'price': 21.09},
  6. {'name': 'HPQ', 'shares': 35, 'price': 31.75},
  7. {'name': 'YHOO', 'shares': 45, 'price': 16.35},
  8. {'name': 'ACME', 'shares': 75, 'price': 115.65}
  9. ]
  10. >>> cheap = heapq.nsmallest(3, portfolio, key=lambda s: s['price'])
  11. >> cheap
  12. >>> [
  13. {'price': 16.35, 'name': 'YHOO', 'shares': 45},
  14. {'price': 21.09, 'name': 'FB', 'shares': 200},
  15. {'price': 31.75, 'name': 'HPQ', 'shares': 35}
  16. ]
  17. >>> expensive = heapq.nlargest(3, portfolio, key=lambda s: s['price'])
  18. >>> expensive
  19. >>> [
  20. {'price': 543.22, 'name': 'AAPL', 'shares': 50},
  21. {'price': 115.65, 'name': 'ACME', 'shares': 75},
  22. {'price': 91.1, 'name': 'IBM', 'shares': 100}
  23. ]

如果您只是想查找单个最小或最大项(N=1),则[使用min()和max()函数的]速度更快。

  关于Python技术储备

学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后大家分享一份全套的 Python 学习资料,给那些想学习 Python 的小伙伴们一点帮助!

一、Python的学习大礼包

Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。(文末获取!)

祝:学习愉快、工作顺利

温馨提示:获取方式 关注【码农园区】 回复   “ python ”  !!!

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/204713
推荐阅读
相关标签
  

闽ICP备14008679号