Python Forum
Advanced sorting of a built-in list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Advanced sorting of a built-in list
#2
You most first check if date string work as date object.
>>> from datetime import datetime
>>> datetime.strptime('26/06/1950', '%d/%m/%Y')
datetime.datetime(1950, 6, 26, 0, 0)
Now can sort bye dates.
>>> lst = [['WILSON', 'MIKE', 'H', '26/06/1950'], ['EMERIC', 'JAMES', 'H', '27/06/1960'], ['MOPAL', 'ARTHUR', 'H', '27/06/1966']]
>>> sorted(lst, key=lambda item: datetime.strptime(item[3], '%d/%m/%Y'), reverse=True)
[['MOPAL', 'ARTHUR', 'H', '27/06/1966'],
 ['EMERIC', 'JAMES', 'H', '27/06/1960'],
 ['WILSON', 'MIKE', 'H', '26/06/1950']]
reverse it will be from oldest to youngest.
The first and last name should maybe not be split up,could be one string 'WILSON MIKE'.
Reply


Messages In This Thread
Advanced sorting of a built-in list - by Whisper40 - Jan-09-2018, 03:51 PM
RE: Advanced sorting of a built-in list - by snippsat - Jan-09-2018, 05:41 PM
RE: Advanced sorting of a built-in list - by nilamo - Jan-11-2018, 06:03 PM
RE: Advanced sorting of a built-in list - by buran - Jan-11-2018, 06:46 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  sorting a list using unicodes acending order, no loops, no sort(), using recursion lrn2codee 14 6,581 Jun-23-2021, 07:33 PM
Last Post: deanhystad
  Sorting list - Homework assigment ranbarr 1 2,285 May-16-2021, 04:45 PM
Last Post: Yoriz
  Input validation for nested dict and sorting list of tuples ranbarr 3 3,977 May-14-2021, 07:14 AM
Last Post: perfringo
  Advanced Algorithms and Computational Models hafedh 4 2,391 Aug-31-2020, 06:37 PM
Last Post: buran
  Question about Sorting a List with Negative and Positive Numbers Than999 2 12,834 Nov-14-2019, 02:44 AM
Last Post: jefsummers
  CODE for Bubble sorting an unsorted list of 5 numbers. SIJAN 1 2,323 Dec-19-2018, 06:22 PM
Last Post: ichabod801
  sorting a deck of cards (objects in a list) itmustbebunnies 1 7,269 Dec-05-2018, 02:44 AM
Last Post: ichabod801
  Help with list sorting gonzo620 1 3,201 Oct-16-2018, 02:58 PM
Last Post: j.crater
  Sorting list of names by first two characters Otbredbaron 2 3,338 May-24-2018, 03:59 PM
Last Post: Otbredbaron
  Sorting Santa's List of Children sirox84 4 5,248 Feb-20-2017, 06:10 PM
Last Post: sirox84

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020