Python 3 - 列表 sort() 方法
-
描述
sort()方法对列表的对象进行排序,如果给定则使用比较函数。 -
句法
以下是语法sort()方法 -list.sort([func])
-
参数
NA -
返回值
该方法不返回任何值;它只是对给定列表的内容进行排序。 -
例子
以下示例显示了 sort() 方法的用法。#!/usr/bin/python3 list1 = ['physics', 'Biology', 'chemistry', 'maths'] list1.sort() print ("list now : ", list1)
-
结果
当我们运行上面的程序时,它会产生以下结果 -list now : ['Biology', 'chemistry', 'maths', 'physics']