Dictionary Basics
Create dicts, access values by key, and iterate over them.
Dictionary Basics is a free Python Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Python Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Introduction
Creating a Dict
d = {'name': 'Alice', 'age': 30}
print(d)Accessing Values
d = {'name': 'Alice'}
print(d['name'])
print(d.get('missing', 'default'))Adding and Updating
d = {'name': 'Alice'}
d['age'] = 30
print(d)Deleting a Key
d = {'a': 1, 'b': 2}
del d['a']
print(d)Checking Key Existence
d = {'name': 'Alice'}
print('name' in d)
print('age' in d)Iterating Keys
d = {'a': 1, 'b': 2}
for key in d:
print(key, d[key])Iterating Items
d = {'a': 1, 'b': 2}
for k, v in d.items():
print(f'{k}: {v}')Nested Dictionaries
user = {'name': 'Alice', 'address': {'city': 'NYC'}}
print(user['address']['city'])Dict from Two Lists
keys = ['a', 'b', 'c']
vals = [1, 2, 3]
d = dict(zip(keys, vals))
print(d)Counting with Dicts
text = 'hello'
counts = {}
for ch in text:
counts[ch] = counts.get(ch, 0) + 1
print(counts)Quick Check
Recap
Keep Going
Frequently asked questions
Is the “Dictionary Basics” lesson free?
Yes — the full text of “Dictionary Basics” is free to read here on the web, and the Python Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Python Academy course, upgrade to CoddyKit PRO.
What will I learn in “Dictionary Basics”?
Create dicts, access values by key, and iterate over them. You practise Python Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Python Academy?
No prior experience is required. Python Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “Dictionary Basics” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Python Academy lesson?
Yes. Every Python Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Dictionary Basics
- Dictionary Methods
- Sets and Set Operations
- Dictionary Comprehensions