python列表sort方法

數值的列表或字符串的列表,能用 sort()方法排序。例如,在交互式環境中輸入如下代碼:python >>> spam = [2, 5, 3.14, 1, -7] >>> spam.sort() >>> spam [-7, 1, 2, 3.14, 5] >>> spam = ['ants', 'cats', 'dogs', 'badgers', 'elephants'] >>> spam.sort
相關文章
相關標籤/搜索