Files
2024-05-22 17:27:37 +02:00

573 B

id, title, challengeType, dashedName
id title challengeType dashedName
65797670e0c0d016f17e7660 Schritt 7 20 step-7

--description--

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

--hints--

You should print copper at the bottom of your code.

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

--seed--

--seed-contents--

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

--fcc-editable-region--