Python 列表的排序

python list 的排序函數 >>> a = [2,4,6,7,4,3,9] >>> a.sort() >>> a [2, 3, 4, 4, 6, 7, 9] >>> 元素是元組的list 排序 (使用每一個元組的第一個(第二個)元素排序<正序><倒序>)python >>> c=[23,45,21,4,54,3] >>> d=[43,34,56,2,12,9] >>> b=zip(c,d)
相關文章
相關標籤/搜索