我正在尝试对python中的列表列表进行排序。我写了以下代码: def sort(intervals): if intervals == [] : return [] intervals.sort(key = lambda x:x.start) return ...
確定! 回上一頁