文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>返回一个list中最大的3个数

返回一个list中最大的3个数

时间:2009-04-04  来源:blackjimmy

该例子是使用3次循环,分别进行排序,提取最大的,然后删除最大的,再排序,。。。。 或者可以对list进行sort,然后取出最后3个元素。    

# take care if a function modifies a list passed as an argument

def top3(a):
    """Return the 3 highest numbers from the list a"""

    t = []
    for i in xrange(3):
        m = max(a)
        t.append(m)
        a.remove(m)
    return t

grades = [10, 5, 11, 5, 13, 5]
print "Top 3 of the grades %s are:"%grades
print top3(grades)

print "Average grade:", (sum(grades)/len(grades))

# or you can sort the list and extract the last three items

 

文件: top3.rar
大小: 0KB
下载: 下载
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载