Python Forum
Most efficient way to define sub keys of a dictionary?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Most efficient way to define sub keys of a dictionary?
#1
Suppose I have a dictionary named "properties".

properties = {}

And there's a few different items that will be subkeys.

properites["item1"] = {}

One of the subkeys is "color".

properites["item1"]["color"] = "blue"

What's the most efficient way to define item2's color if item 2 doesn't exist in the properties dict yet? So:

properties = {}
properties["item2"]["color"] = "black"

# throws a KeyError: 'item2'

Currently I'm solving this with a roundabout declaration:

properites = {}
properties["item2"] = {}
properties["item2"]["color"] = "black"

But I'm guessing there's a better way.
Reply
#2
Use defaultdict.
>>> from collections import defaultdict
>>> 
>>> properites = defaultdict(dict)
>>> properites["item2"]["color"] = "black"
>>> properites
defaultdict(<class 'dict'>, {'item2': {'color': 'black'}})
>>> properites['item2']['color']
'black'
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  A more efficient code titanif 2 1,131 Oct-17-2023, 02:07 PM
Last Post: deanhystad
  Making a function more efficient CatorCanulis 9 3,398 Oct-06-2022, 07:47 AM
Last Post: DPaul
  I there a more efficient way of printing ? Capitaine_Flam 7 4,779 Dec-01-2020, 10:37 AM
Last Post: buran
  Adding keys and values to a dictionary giladal 3 3,378 Nov-19-2020, 04:58 PM
Last Post: deanhystad
  access dictionary with keys from another and write values to list redminote4dd 6 4,476 Jun-03-2020, 05:20 PM
Last Post: DeaD_EyE
  Drop Keys From Dictionary donnertrud 8 5,190 May-30-2020, 11:39 AM
Last Post: DeaD_EyE
  Problem adding keys/values to dictionary where keynames = "property" and "value" jasonashaw 1 2,632 Dec-17-2019, 08:00 PM
Last Post: jasonashaw
  Checking if the combination of two keys is in a dictionary? mrsenorchuck 6 5,207 Dec-04-2019, 10:35 AM
Last Post: mrsenorchuck
  Retrieving dictionary keys within with another dictionay bazcurtis 8 4,186 Oct-29-2019, 10:06 PM
Last Post: bazcurtis
  Simple problem. looking for an efficient way silverchicken24 3 3,216 Oct-14-2019, 07:13 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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