In some Python code I've read I keep noticing this code:
return dict(somekey=somevalue)
Does that have any benefit over:
return {somekey:somevalue}
I tend to say no, since both objects will belong to the same dict type, but I may be wrong.
|
1
|
In some Python code I've read I keep noticing this code:
Does that have any benefit over:
I tend to say no, since both objects will belong to the same
|
||
|
|
>>> def foo(): return dict(a=1)
...
>>> def bar(): return {'a':1}
...
>>> import dis
>>> dis.dis(foo)
1 0 LOAD_GLOBAL 0 (dict)
3 LOAD_CONST 1 ('a')
6 LOAD_CONST 2 (1)
9 CALL_FUNCTION 256
12 RETURN_VALUE
>>> dis.dis(bar)
1 0 BUILD_MAP 1
3 LOAD_CONST 1 (1)
6 LOAD_CONST 2 ('a')
9 STORE_MAP
10 RETURN_VALUE
>>> import timeit
>>> timeit.Timer(foo).timeit()
0.76093816757202148
>>> timeit.Timer(bar).timeit()
0.31897807121276855
There is no functional difference, but the latter is more efficient. |
||
|
|
|
|
They are semantically identical. The The The There are performance differences. |
||||
|
|
|
There is a third dict constructor too, |
||||
|
|
|
Python is dynamic -- so you can redefine what 'dict' means in any of your scopes, while Python's syntax is absolutely nonprogrammable. Thus the Python parser can conclude, when it sees the curly braces, that it must build a dict. A In effect, using container literals like the I think this has influenced the Python 3 decision to introduce set literals like It does happen that programmers reassign python builtins! I think this is mostly by mistake, and mostly limited to local variables (and Python's namespaces make sure it can't do too much harm!) Here is a Google Code Search for code reassigning That it's possible to do this doesn't mean you should do it. Yes, for example thinking that dict should really be called
:-) An example of code that does this is found right in the Python standard library. That's right, here is from line 92 of shelve.py:
This is a very typical example; dict is used as a method argument, and no-one notices and it does no harm, since the method is very short. Use syntax highlighting for builtins to catch this, is my suggestion. |
|||
|
|
|
The curly braces are a syntaxtic nicity, so the only benefit is can more clearly express the structure of the dict. |
||
|
|
|
|
|
||
|
|
strictflag :) – Geo Nov 6 at 21:48hash, checksum, strict = dict, hash, "anything goes"– kaizer.se Nov 9 at 19:48