用python对十个数字进行排序
时间: 2023-04-07 07:05:34 浏览: 134
python 对10个数进行排序 (示例)
好的,我可以回答这个问题。你可以使用Python内置的sorted()函数对十个数字进行排序。例如:
numbers = [5, 2, 9, 1, 5, 6, 3, 8, 7, 4]
sorted_numbers = sorted(numbers)
print(sorted_numbers)
输出结果为:[1, 2, 3, 4, 5, 5, 6, 7, 8, 9]
阅读全文