使用Python对数据排序

时间:2016-04-09 11:42:31

标签: python sorting

我是Python的新手,我在下面有一段代码

class student:
    def __init__(stu, code, name, number):
        stu.code = code
        stu.name = name
        stu.number = number    

student = [
stu("901", "Joh Doe", "123456")
stu("902", "Mary Mount", "566665")
stu("903", "David Lee", "394624")
]

我想将下面的最后一个数据从最高到最低排序,我可能知道怎么做吗?

自:

901         Joh Doe            123456
902         Mary Mount         566665
903         David Lee          394624

要:

902         Mary Mount         566665
903         David Lee          394624
901         Joh Doe            123456

非常感谢您的帮助 感谢

0 个答案:

没有答案