Chapter 2 - Python Quest
Dictionary Lab
Look up keys, change values, count favorites, and inspect key/value pairs.
XP
0Level 1Stars
0/15quest starsCombo
0clean runsRank
Seed0/160 Python scoreDictionary lookup
100 XPSnack Price List
The snack table has a tiny price list for after-school treats.
Write snack_price(snack) so chips costs 2, juice costs 3, cookie costs 1, and anything not listed costs 0.
Sample checks
snack_price("chips")returns2Explanation: chips are on the list
snack_price("juice")returns3Explanation: juice is on the list
Hint
Hints are ready when you want one.
Lesson reference
Review: Looking up a key safely
Your Python
snack_price
Loading editor
Judge
Ready
Run your code when it feels ready.
