sorted () 函式使用後,會產生一個排序過後的新串列,因此「不會改變」原始的串列。 a = [0,3,2,1,4,9,6,8,7,5] b = sorted(a) c = sorted(a, reverse=True) print(a) ...
確定! 回上一頁