温馨提示×

python给数字排序的方法是什么

小亿
84
2024-04-20 17:50:42
栏目: 编程语言

在Python中,可以使用内置的sorted()函数来对数字进行排序。该函数可以接受一个可迭代对象作为输入,返回一个新的已排序的列表。例如:

numbers = [3, 1, 4, 1, 5, 9, 2, 6]
sorted_numbers = sorted(numbers)
print(sorted_numbers)

输出结果为:

[1, 1, 2, 3, 4, 5, 6, 9]

另外,还可以使用sort()方法对列表进行原地排序,例如:

numbers = [3, 1, 4, 1, 5, 9, 2, 6]
numbers.sort()
print(numbers)

输出结果为:

[1, 1, 2, 3, 4, 5, 6, 9]

0