Build an Employee Profile Generator - Step 2

Tell us what’s happening:

I keep getting the prompt “You should assign a string formed by concactenating first_name and last_name to your full_name variable” which I have done. No error shows in the terminal. I’ve checked the forum and no solutions there have helped. I’ve run my code through ClaudeCode and it verified my solution was correct. I need to figure out what I’m doing wrong. I’ve been stuck here for 3 days.

Your code so far

first_name = 'John'
last_name = 'Doe'
print(first_name)
print(last_name)

# User Editable Region

full_name = first_name + '' + last_name
print(full_name)

# 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/145.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 2

Welcome to the forum, @cmelende !

You were just asked to concatenate first_name and last_name with no string between them. (btw, that’s an empty string, not a space).

Happy coding!

how can do step 9 its tricky?

hi @Thabiso_24 , it’s better if you create your own topic.

I am going to ask you, is employee_age a string you need to concantenate or a variable?

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like

full_name = first_name + last_name……………..I was going through google and everything then it clicked try this it should work

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.