Build an Employee Profile Generator - Step 9

Tell us what’s happening:

i couldn’t figuir out this step so hard for me. but why is so hard and i’m confused with it.

Your code so far

first_name = 'John'
last_name = 'Doe'
full_name = first_name + ' ' + last_name
address = '123 Main Street'
address += ', Apartment 4B'
employee_age = 28

# User Editable Region

employee_info = employee_info + ' is '+ (employee_age)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 9

why’s, employee_age, in brackets?

Hi @mubarikshodhe

Traceback (most recent call last):
  File "main.py", line 10, in <module>
NameError: name 'employee_info' is not defined

You are getting a traceback error, because you are assigning a variable that is undefined.

Please reset the step to restore the seed code and try again.

Happy coding