反向排序距离,或给定的“距离”列表,通过函数的参数传递

sort distance reverse, ort the given “distances” list, passed through the function’s parameters

提问人:tawfik 123 提问时间:10/28/2023 最后编辑:dawgtawfik 123 更新时间:10/28/2023 访问量:167

问:

请考虑以下有关使用 Python 列表的方案:

一家公司的员工通过在线调查分享了他们开车上班的距离(以英里为单位)。Python 会按照每个员工提交距离的顺序自动将这些距离添加到名为“距离”的列表中。管理层希望按照最长距离到最短距离的顺序对列表进行排序。

完成对“距离”列表进行排序的功能。此函数应:

对给定的“距离”列表进行排序,通过函数的参数进行传递;

颠倒排序顺序,使其从最长距离到最短距离;

返回修改后的“距离”列表

def sort_distance(distances):
    ___ # Sort the list
    ___ # Reverse the order of the list
    return distances


print(sort_distance([2,4,0,15,8,9]))
# Should print [15, 9, 8, 4, 2, 0]
python 排序 反向

评论

0赞 dawg 10/28/2023
这回答了你的问题吗?以相反的顺序对列表进行排序
0赞 dawg 10/28/2023
sorted(li,reverse=True)

答: 暂无答案