Python数组排序:从小到大排序方法
在Python中,可以使用内置的'sorted()'函数来对数组进行排序,示例如下:
arr = [5, 2, 9, 1, 7]
sorted_arr = sorted(arr)
print(sorted_arr)
输出结果为:'[1, 2, 5, 7, 9]'
这里,'sorted()'函数接受一个可迭代的对象(如数组)作为参数,并返回一个新的已排序的列表。原始数组不会被修改。
原文地址: https://www.cveoy.top/t/topic/o3Vx 著作权归作者所有。请勿转载和采集!