List Sorting Revisited. Lists can be sorted in-place. Using the sort method. s = [10,1,7,3] s.sort() # s = [1,3,7,10]. You can sort in reverse order.
確定! 回上一頁