Python列表排序函數

sort函數 原地排序,直接改變輸入的列表,而無返回值。python x = [2, 1, 3] x.sort() print x # output: [1, 2, 3] print x.sort() # output: None 若要實現賦值,則先把x的副本(一個新對象)賦值給一個變量,再排序,這樣能夠保證不改變x。web x = [2, 1, 3] y = x[:] # 或 y = list
相關文章
相關標籤/搜索