Tell us what’s happening:
Keys must be unique within a dictionary and they can be only immutable data types. This means you cannot use a list or another dictionary as keys.
Add another key age to your dictionary and give it the integer number 2 as value.
idk what is the problem
Your code so far
# User Editable Region
copper = {'species': 'guinea pig', 'age': '2'}
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0
Challenge Information:
Learn Algorithm Design by Building a Shortest Path Algorithm - Step 3