mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-13 22:00:19 -04:00
658 B
658 B
id, title, challengeType, dashedName
| id | title | challengeType | dashedName |
|---|---|---|---|
| 64afc37bf3b37856e035b85e | Upcoming Python Project | 20 | upcoming-python-project |
--description--
Python Project instructions
--hints--
Test 1
({ input: ["Beau", "Carnes"], test: () => {
assert.equal( "Beau", __userGlobals.get("name"));
assert.equal( "Carnes", __userGlobals.get("last_name"));
} })
--seed--
--seed-contents--
--fcc-editable-region--
name = input('What is your name?')
print('Hi ' + name)
--fcc-editable-region--
--solutions--
name = input('What is your name?')
last_name = input('What is your last name?')
print('Hi ' + name + ' ' + last_name)