Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List Sorting Problem
#1
Sorry I am a novice.

I am trying to sort a custom dictionary consisting of a list of 2-element lists, (lexical entry and definition), using sort() and/or sorted() with sorting keys.

I need to sort using keys both for i) list position (i.e., position 0), and ii) normal alphabetic (case-insensitive) order as used for standard dictionaries.

I know how to each of these things alone, but not both at once, and this does not seem to be a problem of 'successive sorts', but different parameters of one sort. So I am using 'key=str.lower' for normal alphabetic sort, and
'key= itemgetter(0) for sorting on first element.

Perhaps this would be easier with a different data structure?

Thanks!
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,150 Apr-12-2022, 12:25 AM
Last Post: Pnerd
  Sorting List finndude 9 2,498 Jan-27-2022, 09:37 PM
Last Post: Pedroski55
  sorting a list of lists by an element leapcfm 3 1,912 Sep-10-2021, 03:33 PM
Last Post: leapcfm
  Sorting problem deanhystad 2 1,590 Feb-17-2021, 10:04 PM
Last Post: deanhystad
  Sorting list of names using a lambda (PyBite #5) Drone4four 2 2,757 Oct-16-2020, 07:30 PM
Last Post: ndc85430
  list sorting question DPaul 5 2,789 Jun-17-2020, 02:23 PM
Last Post: ndc85430
  sorting list of lists pframe 5 24,962 Apr-17-2020, 09:31 PM
Last Post: Larz60+
  sorting list arian29 2 2,164 Feb-02-2020, 10:31 AM
Last Post: ndc85430
  Converting parts of a list to int for sorting menator01 2 2,260 Nov-03-2019, 03:00 PM
Last Post: menator01
  Sorting a copied list is also sorting the original list ? SN_YAZER 3 3,103 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