python heapq.nsmallest
时间: 2024-05-19 09:17:19 浏览: 119
堆排序python代码.rar
函数的使用方法是什么?
答:可以使用以下代码来使用 heapq.nsmallest 函数:
import heapq
nums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
print(heapq.nsmallest(3, nums))
输出结果将是 [ -4, 1, 2 ] 表示返回列表中最小的三个元素。
阅读全文