Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sort a dict in dict
#2
I'm not sure I understand what you're trying to do. Do you want 3 different sorts, or one sort that has preferential keys? And what information do you want to return. Do you need the initial keys or just the value objects?

This returns the keys and the names of dict in 'name' order
>>> [(k, v['name']) for k,v in sorted(dico_nouveau.items(), key=lambda x: x[1]['name'])]
[('21212121', 'Dupond'), ('20202020', 'Durand'), ('28790020', 'Férien')]
or to just return all the dictionary objects in 'name' order:
>>> sorted(dico_nouveau.values(), key=lambda v: v['name'])
[{'name': 'Dupond', 'first': 'Alain', 'notes': [11, 9.5, 5.5, 18]}, {'name': 'Durand', 'first': 'Martin', 'notes': [15, 15.5, 8, 13]}, {'name': 'Férien', 'first': 'Mélissa', 'notes': [13, 19.5, 15, 8]}]
Reply


Messages In This Thread
Sort a dict in dict - by cherry_cherry - Apr-07-2020, 08:48 PM
RE: Sort a dict in dict - by bowlofred - Apr-07-2020, 09:57 PM
RE: Sort a dict in dict - by deanhystad - Apr-07-2020, 10:07 PM
RE: Sort a dict in dict - by cherry_cherry - Apr-08-2020, 11:23 AM
RE: Sort a dict in dict - by perfringo - Apr-08-2020, 12:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Dict Update dave0823 8 1,485 Jan-02-2025, 05:34 PM
Last Post: deanhystad
  [SOLVED] [listbox] Feed it with dict passed to class? Winfried 3 1,317 May-13-2024, 05:57 AM
Last Post: Larz60+
  questions about dict.get akbarza 2 1,306 Apr-19-2024, 01:53 PM
Last Post: deanhystad
  Unpacking a dict with * or ** msrk 4 3,299 Dec-02-2023, 11:50 PM
Last Post: msrk
  Why does newly-formed dict only consist of last row of each year? Mark17 6 2,294 Nov-17-2023, 05:28 PM
Last Post: Mark17
  dict table kucingkembar 4 1,798 Sep-30-2023, 03:53 PM
Last Post: deanhystad
  replacing dict contents Skaperen 6 2,239 Apr-16-2023, 05:57 PM
Last Post: Skaperen
  search in dict inside tuple steg 1 1,361 Mar-29-2023, 01:15 PM
Last Post: rob101
  Partial KEY search in dict klatlap 6 2,677 Mar-28-2023, 07:24 AM
Last Post: buran
  Copy item from one dict to another Pavel_47 3 1,871 Dec-23-2022, 11:19 AM
Last Post: Pavel_47

Forum Jump:

User Panel Messages

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