Back to Freecodecamp

Step 7

curriculum/challenges/english/blocks/learn-algorithm-design-by-building-a-shortest-path-algorithm/65797670e0c0d016f17e7660.md

latest480 B
Original Source

--description--

Now, at the bottom of your code, print copper.

--hints--

You should print copper at the bottom of your code.

js
({ test: () =>
  {
    const commentless_code = __helpers.python.removeComments(code);
    assert.match(commentless_code, /print\s*\(\s*copper\s*\)\s*$/)
  }
})

--seed--

--seed-contents--

py
--fcc-editable-region--
copper = {
    'species': 'guinea pig',
    'age': 2
}
copper['food'] = 'hay'

--fcc-editable-region--