sorting a list of dictionary values by date in python [duplicate] August 11, 2023 by Tarik You can do it this way: list.sort(key=lambda item:item['date'], reverse=True)