Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List Sorting Problem
#4
If you adjust your keyfunc a little bit then you can achieve desired result.

Depending how agressive you would like to be in lowering you can use str.casefold or str.lower.

...and don't use list as a name.

>>> data = [['pencil', 'writing implement'], ['asteroid', 'space body'], ['Arctic', 'northern pole']]
>>> sorted(data, key=lambda pair: pair[0].casefold())
[['Arctic', 'northern pole'], ['asteroid', 'space body'], ['pencil', 'writing implement']]
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
List Sorting Problem - by ZZTurn - Sep-22-2022, 02:55 AM
RE: List Sorting Problem - by perfringo - Sep-22-2022, 06:21 AM
RE: List Sorting Problem - by ZZTurn - Sep-22-2022, 07:38 AM
RE: List Sorting Problem - by perfringo - Sep-22-2022, 09:21 AM
RE: List Sorting Problem - by ZZTurn - Sep-22-2022, 11:23 PM
RE: List Sorting Problem - by ZZTurn - Sep-22-2022, 11:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with "Number List" problem on HackerRank Pnerd 5 2,170 Apr-12-2022, 12:25 AM
Last Post: Pnerd
  Sorting List finndude 9 2,550 Jan-27-2022, 09:37 PM
Last Post: Pedroski55
  sorting a list of lists by an element leapcfm 3 1,958 Sep-10-2021, 03:33 PM
Last Post: leapcfm
  Sorting problem deanhystad 2 1,606 Feb-17-2021, 10:04 PM
Last Post: deanhystad
  Sorting list of names using a lambda (PyBite #5) Drone4four 2 2,778 Oct-16-2020, 07:30 PM
Last Post: ndc85430
  list sorting question DPaul 5 2,822 Jun-17-2020, 02:23 PM
Last Post: ndc85430
  sorting list of lists pframe 5 27,474 Apr-17-2020, 09:31 PM
Last Post: Larz60+
  sorting list arian29 2 2,185 Feb-02-2020, 10:31 AM
Last Post: ndc85430
  Converting parts of a list to int for sorting menator01 2 2,275 Nov-03-2019, 03:00 PM
Last Post: menator01
  Sorting a copied list is also sorting the original list ? SN_YAZER 3 3,158 Apr-11-2019, 05:10 PM
Last Post: SN_YAZER

Forum Jump:

User Panel Messages

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