General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
Indently
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "PRO TIP For Using Dictionaries In Python (ft. get u0026 setdefault)" video.
I keep forgetting about setdefault. Must remember to use that more. And here’s another tip: deleting a dictionary entry that might not exist. Where del d[key] will raise KeyError if there is no such entry, d.pop(key, None) will not.
7
This is why it helps to keep the Python library docs in your bookmark list!
1