Is there any tangible difference between the two forms of syntax available for creating empty Python lists/dictionaries, i.e.
l = list()
l = []
and:
d = dict()
d = {}
I'm wondering if using one is preferable over the other.
|
Is there any tangible difference between the two forms of syntax available for creating empty Python lists/dictionaries, i.e.
and:
I'm wondering if using one is preferable over the other. |
|||
|
The function form calls the constructor at runtime to return a new instance, whereas the literal form causes the compiler to "create" it (really, to emit bytecode that results in a new object) at compile time. The former can be useful if (for some reason) the classes have been locally rebound to different types.
|
|||||||||||
|
|
The main difference is that one form includes a name lookup, while the other doesn't. Example illustrating this difference:
prints
Of course you definitely should not be doing such nonsense. |
|||
|
|
[]and{}are faster and look better in my opinion. – jamylak Jun 14 '12 at 7:23