Files
freeCodeCamp/curriculum/challenges/german/20-upcoming-python/upcoming-python-project/64afc37bf3b37856e035b85e.md
2023-11-13 17:14:46 +02:00

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)