In python, is there a difference between calling clear() and assigning {} to a dictionary? If yes, what is it?
Example:
d = {"stuff":"things"}
d.clear() #this way
d = {} #vs this way
|
In python, is there a difference between calling
| ||||
|
feedback
|
|
If you have another variable also referring to the same dictionary, there is a big difference:
This is because assigning | |||||||
feedback
|
|
d = {} will create a new instance for d but all other references will still point to the old contents. .clear() will reset the contents, but all references to the same instance will still be correct. | |||
|
feedback
|
|
In addition to the differences mentioned in other answers, there also is a speed difference. d = {} is over twice as fast:
| |||
|
feedback
|
|
As an illustration for the things already mentioned before:
| |||
|
feedback
|