Python 程序按自定义元素计数对矩阵行进行排序
必须按自定义元素计数对矩阵行进行排序时,就定义一个方法,其中使用列表解析和“len”方法查找输出。
下面展示了同样的方法 −
示例
def get_count_matrix(my_key): return len([element for element in my_key if element in custom_list]) my_list = [[31, 5, 22, 7], [85, 5], [9, 11, 22], [7, 48]] print("The list is :") print(my_list) custom_list = [31, 85, 7] my_list.sort(key=get_count_matrix) print("The resultant list is :") print(my_list)
输出
The list is : [[31, 5, 22, 7], [85, 5], [9, 11, 22], [7, 48]] The resultant list is : [[9, 11, 22], [85, 5], [7, 48], [31, 5, 22, 7]]
说明
定义了一个名为“get_count_matrix”的方法,该方法将键作为参数。
它使用列表解析迭代列表,并检查元素中是否包含特定的键。
如果是,则使用“len”方法返回其长度。
在此方法外部,定义了一个列表,并在控制台上显示。
定义了另一个带有整数的列表。
使用“sort”方法对列表进行排序,并指定键为先前定义的方法。
此列表以输出的形式显示在控制台上。
广告