mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-12 01:00:13 -04:00
573 B
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--