...

Chapter 2 - Python Quest

Dictionary Lab

Look up keys, change values, count favorites, and inspect key/value pairs.

XP
0Level 1
Stars
0/15quest stars
Combo
0clean runs
Rank
Seed0/160 Python score
Dictionary lookup

Snack Price List

100 XP

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")returns2

Explanation: chips are on the list

snack_price("juice")returns3

Explanation: 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

0/4

Run your code when it feels ready.