Python3使用sorted函數對列表元素進行多字段排序

Python3 的 sorted 函數相信你們都會,不外乎像下面這種:python >>> pairs = [('11', 'one'),('3', 'three'), ('2', 'two'),('2', 'zzz'), ('4', 'four')] >>> sorted(pairs) [('11', 'one'), ('2', 'two'), ('2', 'zzz'), ('3', 'thre
相關文章
相關標籤/搜索