1. 程式人生 > >sort與sorted的區別

sort與sorted的區別

list.sort()和sorted的區別:

a=list(range(10))

a.sort()表示對a列表進行排序,但是返回值是none

sorted(a)  對a列表進行排序,但是返回值是排序完的列表