当前位置:   article > 正文

Python中用sort和class实现多级排序_python class sort

python class sort

Python中用sort和class实现多级排序

import random
class Temp:

    def __init__(self, a, b, c):

        self.a = a
        self.b = b
        self.c = c

    def __str__(self):
        return ( ('[a: %d b: %d c: %d]' % (self.a, self.b, self.c)))

def cmp1(temp1, temp2):
    if (temp1.a > temp2.a):
        return 1;
    elif(temp1.a == temp2.a):
        if (temp1.b>temp2.b):
            return 1;
        elif(temp1.b == temp2.b):
            return 0;
        else:
            return -1;
    else:
        return -1;

def cmp2(temp1):
    return temp1.a

temp = []
<
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/177719?site
推荐阅读
相关标签
  

闽ICP备14008679号