Build an Employee Profile Generator - Step 9

Tell us what’s happening:

I have been stuck on this for a while now, trying all sorts.

the previous step asks for a variable to be created which isn’t added to the code above. Not sure why.

Can someone please help me here?

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_age

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15

Challenge Information:

Build an Employee Profile Generator - Step 9

Hi.

You have deleted the seed code. I suggest resetting the step and trying again.

Use concatenation rather than an assignment operator.

employee_info = employee_ + employee_age

I have tried this answer and still does not work.

You should keep everything you already have and just add `[ mod edit - solution removed ] just keep adding to it.

Please don’t give solutions as it’s against the forum rules. We guide users to work out the answer for themselves.

This is an example of concatenation already in your code

full_name = first_name + ' ' + last_name

Use that as an example to work out how to progress on this one. I suggest you reset the step and try again. Don’t delete any seed code from the edit window.

I have and still can’t get passed it, I get a TpyeError but unable to proceed

Please post your updated code. Everything you have written above is not right. You need to reset the step to get the original code back. Just post your updated line 7. It is supposed to have a typerror. You have to keep pressing submit many times until it passes once you have the right code.