脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python对List中的元素排序的方法

Python对List中的元素排序的方法

2021-01-26 00:17MSTK Python

这篇文章主要介绍了Python对List中的元素排序 ,需要的朋友可以参考下

首先定义一个compare函数:

?
1
2
3
4
5
6
7
def compare(sf1, sf2):
  if (sf1.value > sf2.value):
    return -1;
  elif (sf1.value == sf2.value):
    return 0;
  else:
    return 1;

然后调用该函数就可以对List中的元素排序:

listA.sort(compare)

要求ListA中的元素有value这个属性才行,当然也可以把value换成ListA中的元素的其他共有属性也可以。感觉和Java差不多。

总结

以上所述是小编给大家介绍的Python对List中的元素排序的方法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复的!

原文链接:https://www.cnblogs.com/mstk/archive/2018/03/31/8684575.html

延伸 · 阅读

精彩推荐