编写一个函数top_three
,它以列表作为参数,并返回三个最大元素的列表。
例如
top_three([2,3,5,6,8,4,2,1]) == [8, 6, 5]
我的代码是:
def top_three(input_list):
input_list=[1,2,3,4,5]
a=sorted(input_list, reverse=True)
b=input_list[0:3]
return b
print(top_three(input_list))
答案 0 :(得分:0)
类似的东西:
input_list=[1,10,22,2,3,4,5]
def top_three(input_list):
result = sorted(input_list, reverse=True)
return result[0:3]
print(top_three(input_list))