Dictionaries (the Python kind)

Опубликовано: 18 Март 2026
на канале: The Lightbulb Lectures
76
0

IMPORTANT NOTE:
I forgot to add a section explaining that dictionaries also have a ".pop()" function. Basically, write dictionaryname.pop("key") and it will remove that key:value pair from the dictionary.

00:00 - Intro
00:13 - What are dictionaries?
00:34 - Why dictionaries are useful
00:49 - How to make a dictionary
1:10 - .get() function
1:23 - .keys() function
1:36 - .items() function
1:45 - How to add or change an entry
2:07 - Outro