Tell us what’s happening:
Not sure if I’m misinterpreting the instructions/feedback.
Instructions: Delete your print()
call. Then, after declaring copper
, add the key food
to your dictionary and set its value to hay
.
Feedback: You should add the key food
to copper
after declaring the dictionary.
I believe that’s what I did. Thoughts?
Your code so far
/* User Editable Region */
copper = {
'species': 'guinea pig',
'age': 2,
'food': 'hay'
}
/* 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/120.0.0.0 Safari/537.36
Challenge Information:
Learn Algorithm Design by Building a Shortest Path Algorithm - Step 6