Files
freeCodeCamp/curriculum/challenges/korean/20-upcoming-python/upcoming-python-project/64afc37bf3b37856e035b85e.md
2024-02-09 13:44:01 +05:30

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)