Build an Employee Profile Generator - Step 9

Tell us what’s happening:

i don’t know what i need to do to make the code pass, if i type employee_info = full_name + ’ i s ’ + employee_age, “it will say typerroryou cannot concatenate str and int” , if I type + ’ is ’ + employee_info + employee_age, it will say , “name error employee_info is not define”, if i type + employee_info + ’ i s ’ + employee_info += employee_age, "it will say typerror ", can anyone explan to me what am i doing wrong, am almost at my wits end

Your code so far

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

# User Editable Region

employee_age = 28
employee_info = full_name + '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/147.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 9

Hi @Iskenny

The “is" string is missing spaces.

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

Do not modify the “is” string.

Happy coding

i have corrected it, it still showing "typeError, can only concantenate str (not "int") to str
first_name = 'John'
last_name = 'Doe'
full_name = first_name + " " + last_name
address = '123 Main Street'
address += ', Apartment 4B'
employee_age = 28
employee_info = full_name + " is " + employee_age

the error is expected, you should use the Check your Code button and go to the next step to fix the error, like it says in the destriction

Once you’ve done so, you’ll see a TypeError in the terminal. In the next step, you’ll work on fixing it.

employee_info = full_name + ' is ' + employee_info + employee_age
like this

this thing is driving me nut, it not taking me to the next step, in the console it’s saying typeError, when i use the check your code it says you should update the employee_info assignment to concatenate the employee_age at the end, this is my code. please i need advice on what i need to do.

first_name = 'John'

last_name = 'Doe'

full_name = first_name + ' ' + last_name

address = '123 Main Street'

address += ', Apartment 4B'

employee_age = 28

employee_info = full_name + ' is ' + employee_age

maybe try resetting the step and writing the code again

please how do i reset the step? i tried gong back to lesson 7 to see if it will be erased, but it still landed me back to where i stopped in lesson 9

Please click the reset button to restore the original code and try again.

image