Python 中對列表進行降序排序
在Python 中,對列表進行降序排序可以使用Sorted() 函數或sort()方法。
# using sorted() timestamps = [ "2010-04-20 10:07:30", "2010-04-20 10:07:38", "2010-04-20 10:07:52", "2010-04-20 10:08:22", "2010-04-20 10:08:22", "2010-04-20 10:09:46", "2010-04-20 10:10:37", "2010-04-20 10:10:58", "2010-04-20 10:11:50", "2010-04-20 10:12:13", "2010-04-20 10:12:13", "2010-04-20 10:25:38", ] sorted_timestamps = sorted(timestamps, reverse=True) print(sorted_timestamps)
這將建立一個新列表,其中元素按降序排序順序,保持原始列表不變。
要就地對列表進行排序,請使用帶有reverse=True的sort()方法:
# using sort() timestamps.sort(reverse=True) print(timestamps)
有關Python排序的更多詳細信息,請參閱排序方法文檔。
以上是如何在Python中依降序對清單進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!