“n-n-lare и n-smallest в списке в Python” Ответ

n-n-lare и n-smallest в списке в 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]
Sundar

Найдите самые большие и самые маленькие цифры в списке

thislist = [677,8765,8765,876,470,754,6784,56789,7658,]
thislist.sort()
print ("The smallest number is: " + str(thislist[0]))
print ("The largest number is: " + str(thislist[-1]))
Courageous Cod

Ответы похожие на “n-n-lare и n-smallest в списке в Python”

Вопросы похожие на “n-n-lare и n-smallest в списке в Python”

Больше похожих ответов на “n-n-lare и n-smallest в списке в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования