"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Sort a List of Timestamps in Descending Order in Python?

How to Sort a List of Timestamps in Descending Order in Python?

Published on 2024-11-24
Browse:455

How to Sort a List of Timestamps in Descending Order in Python?

Python: Sort a List in Descending Order

Sorting a list in Python is a common task. You may find yourself needing to sort a list of strings, numbers, or even objects. Python provides several methods for sorting lists, and one of them is using the sort() function.

Consider the following list of timestamps:

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"
]

To sort this list in descending order, you can use the sort() function with the reverse argument set to True. The reverse argument reverses the order of the sorted elements.

sorted_timestamps = sorted(timestamps, reverse=True)

The sorted_timestamps variable will now contain a new list with the timestamps sorted in descending order.

If you want to sort the list in-place, you can use the following code:

timestamps.sort(reverse=True)

The timestamps list will now be sorted in descending order.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3