L2 = sorted(L1,lambda x1,x2:cmp(x1.name,x2.name))正确的排序结果是:AdamBartLisa但是,L2 = sorted(L1,lambda x1,x2:cmp(x1,x2)为什么就得到了错误的排序结果呢BartLisaAdam 查看完整描述