Python – 按字符串列表中的末尾字符排序
如果需要按末尾字符对列表进行排序,可以定义使用负索引来返回结果的方法。
示例
以下是同样的演示——
def get_rear_position(element): return element[-1] my_list = ['python', 'is', 'fun', 'to', 'learn'] print("The list is : ") print(my_list) my_list.sort(key = get_rear_position) print("The result is : ") print(my_list)
输出
The list is : ['python', 'is', 'fun', 'to', 'learn'] The result is : ['python', 'fun', 'learn', 'to', 'is']
说明
定义一个方法,它将列表中的元素作为参数,并使用负索引返回最后一个元素作为输出。
定义一个列表并显示在控制台上。
现在,使用之前定义的方法作为键对该列表进行排序。
这是显示在控制台上的输出。
广告