Note: Click on "Kernel" > "Restart Kernel and Clear All Outputs" in JupyterLab before reading this notebook to reset its output. If you cannot run this file on your machine, you may want to open it in the cloud .
Here, we list some conference talks that go into great detail regarding the workings of the dict
type.
dict
objects work¶Brandon Rhodes explains in great detail in his PyCon 2010 & 2017 talks how dictionaries work "under the hood."
from IPython.display import YouTubeVideo
YouTubeVideo("C4Kc8xzcA68", width="60%")
YouTubeVideo("66P5FMkWoVU", width="60%")
dict
Type¶The dict
type's order has been worked on with many PEPs in recent years:
Raymond Hettinger, a Python core developer and one of the greatest Python teachers in the world, summaries the history of the dict
type in his PyCon 2017 talk.
YouTubeVideo("npw4s1QTmPg", width="60%")