What's the difference between dict() and {}?

45,090

Solution 1

>>> def f():
...     return {'a' : 1, 'b' : 2}
... 
>>> def g():
...     return dict(a=1, b=2)
... 
>>> g()
{'a': 1, 'b': 2}
>>> f()
{'a': 1, 'b': 2}
>>> import dis
>>> dis.dis(f)
  2           0 BUILD_MAP                0
              3 DUP_TOP             
              4 LOAD_CONST               1 ('a')
              7 LOAD_CONST               2 (1)
             10 ROT_THREE           
             11 STORE_SUBSCR        
             12 DUP_TOP             
             13 LOAD_CONST               3 ('b')
             16 LOAD_CONST               4 (2)
             19 ROT_THREE           
             20 STORE_SUBSCR        
             21 RETURN_VALUE        
>>> dis.dis(g)
  2           0 LOAD_GLOBAL              0 (dict)
              3 LOAD_CONST               1 ('a')
              6 LOAD_CONST               2 (1)
              9 LOAD_CONST               3 ('b')
             12 LOAD_CONST               4 (2)
             15 CALL_FUNCTION          512
             18 RETURN_VALUE        

dict() is apparently some C built-in. A really smart or dedicated person (not me) could look at the interpreter source and tell you more. I just wanted to show off dis.dis. :)

Solution 2

As far as performance goes:

>>> from timeit import timeit
>>> timeit("a = {'a': 1, 'b': 2}")
0.424...
>>> timeit("a = dict(a = 1, b = 2)")
0.889...

Solution 3

@Jacob: There is a difference in how the objects are allocated, but they are not copy-on-write. Python allocates a fixed-size "free list" where it can quickly allocate dictionary objects (until it fills). Dictionaries allocated via the {} syntax (or a C call to PyDict_New) can come from this free list. When the dictionary is no longer referenced it gets returned to the free list and that memory block can be reused (though the fields are reset first).

This first dictionary gets immediately returned to the free list, and the next will reuse its memory space:

>>> id({})
340160
>>> id({1: 2})
340160

If you keep a reference, the next dictionary will come from the next free slot:

>>> x = {}
>>> id(x)
340160
>>> id({})
340016

But we can delete the reference to that dictionary and free its slot again:

>>> del x
>>> id({})
340160

Since the {} syntax is handled in byte-code it can use this optimization mentioned above. On the other hand dict() is handled like a regular class constructor and Python uses the generic memory allocator, which does not follow an easily predictable pattern like the free list above.

Also, looking at compile.c from Python 2.6, with the {} syntax it seems to pre-size the hashtable based on the number of items it's storing which is known at parse time.

Solution 4

Basically, {} is syntax and is handled on a language and bytecode level. dict() is just another builtin with a more flexible initialization syntax. Note that dict() was only added in the middle of 2.x series.

Solution 5

Update: thanks for the responses. Removed speculation about copy-on-write.

One other difference between {} and dict is that dict always allocates a new dictionary (even if the contents are static) whereas {} doesn't always do so (see mgood's answer for when and why):

def dict1():
    return {'a':'b'}

def dict2():
    return dict(a='b')

print id(dict1()), id(dict1())
print id(dict2()), id(dict2())

produces:

$ ./mumble.py
11642752 11642752
11867168 11867456

I'm not suggesting you try to take advantage of this or not, it depends on the particular situation, just pointing it out. (It's also probably evident from the disassembly if you understand the opcodes).

Share:
45,090
verix
Author by

verix

Just a hacker and Internet troll, nothing fancy.

Updated on July 05, 2022

Comments

  • verix
    verix almost 2 years

    So let's say I wanna make a dictionary. We'll call it d. But there are multiple ways to initialize a dictionary in Python! For example, I could do this:

    d = {'hash': 'bang', 'slash': 'dot'}
    

    Or I could do this:

    d = dict(hash='bang', slash='dot')
    

    Or this, curiously:

    d = dict({'hash': 'bang', 'slash': 'dot'})
    

    Or this:

    d = dict([['hash', 'bang'], ['slash', 'dot']])
    

    And a whole other multitude of ways with the dict() function. So obviously one of the things dict() provides is flexibility in syntax and initialization. But that's not what I'm asking about.

    Say I were to make d just an empty dictionary. What goes on behind the scenes of the Python interpreter when I do d = {} versus d = dict()? Is it simply two ways to do the same thing? Does using {} have the additional call of dict()? Does one have (even negligible) more overhead than the other? While the question is really completely unimportant, it's a curiosity I would love to have answered.

  • Sheep
    Sheep over 15 years
    I get similar result for empty dictionary: 0.1usec for 'x = {}' vs 0.3usec for 'x = dict()'.
  • DNS
    DNS over 15 years
    Yeah; function calls are expensive. But that form is more versatile, i.e. dict(zip(...
  • vartec
    vartec over 15 years
    exactly. function calls are some 80-100 times more expensive in Python, than in C.
  • Brian
    Brian over 15 years
    That's not what is happening here. {} is still allocating a new dict (otherwise it would be very bad), but the fact that you don't keep it alive means the id can be reused after it dies (as soon as the first dict is printed).
  • Jacob Gabrielson
    Jacob Gabrielson over 15 years
    I think mgood's answer clarified things; I've updated my entry.
  • DrFalk3n
    DrFalk3n over 14 years
    taking exact use from the doc:docs.python.org/library/timeit.html import timeit t = timeit.Timer("a = {'a': 1, 'b': 2}") t.timeit() t = timeit.Timer("a = dict(a = 1, b = 2)") t.timeit() the second is four times more time consuming
  • Benjamin Toueg
    Benjamin Toueg almost 11 years
    Unfortunately no one could tell you what's behind g because of CALL_FUNCTION 512...
  • ezdazuzena
    ezdazuzena almost 10 years
    Have a look at this nice article by Doug Hellmann: doughellmann.com/2012/11/12/…
  • Houman
    Houman over 9 years
    lower number is better right? So the C-buildin dict() is slower than pure Python {} ?
  • danio
    danio over 7 years
    Newer python has made {'a' : 1, 'b' : 2} more efficient. e.g. in python 2.7.10, the disassembly replaces the ROT_THREE; STORE_SUBSCR; DUP_TOP instructions with STORE_MAP. In python 3.5.1 it gets rid of them all and just has a single BUILD_MAP.
  • Bruno Feroleto
    Bruno Feroleto about 7 years
    Yes. And cases that can use {…} instead should do so because it is more direct and faster than a call to the dict() constructor (function calls are expensive, in Python, and why call a function that only returns something that can be built directly through the {…} syntax?).
  • Bruno Feroleto
    Bruno Feroleto about 7 years
    It has been working in Python 2 for quite a long time now.
  • Chris Schaller
    Chris Schaller over 6 years
    Not sure if you mean funny as in 'lol' or funny as in 'bug'. Please include some sort of commentary or explanation to this as this question was answered 8 years ago, and this will leave noobs to a degree perplexed