mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-11 16:00:12 -04:00
668 B
668 B
id, title, challengeType, dashedName
| id | title | challengeType | dashedName |
|---|---|---|---|
| 64afc37bf3b37856e035b85e | Bevorstehendes Python-Projekt | 20 | upcoming-python-project |
--description--
Anweisungen für Python-Projekt
--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)