Python 数组排序
定期整理点滴,完善自己,今后给洋哥挣钱,陪伴着让我的小宝贝发自内心爱上笑,加油吧数组排序import heapqnums = [10, 2, 9, 100, 80]print(heapq.nlargest(3, nums))print(heapq.nsmallest(3, nums))students = [ {'names': 'CC', "score": 100, 'he...