Answers for "22.3 LAB: Smallest and largest numbers in a list"

1

n-largest and n-smallest in list in python

import heapq

grades = [110, 25, 38, 49, 20, 95, 33, 87, 80, 90]

print(heapq.nlargest(3, grades))
print(heapq.nsmallest(4, grades))

[110, 95, 90]
[20, 25, 33, 38]
Posted by: Guest on August-27-2021

Code answers related to "22.3 LAB: Smallest and largest numbers in a list"

Python Answers by Framework

Browse Popular Code Answers by Language