Build an Employee Profile Generator - Step 3

Tell us what’s happening:

I have tried to update the variable by adding a space in between first_name and last_name but it is still kicking back an error. I tried resetting it multiple times but still gives me an error

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

# User Editable Region

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


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 3

Welcome to the forum @cola.christopher!

Try resetting this step again. This time, only change the line that assigns a value to full_name.

The code you wrote is close. Just remove the parentheses. Those are used in the instructions only as placeholders.

Happy coding!

Thank you for the quick reply! I’ve tried resetting it and removing the parentheses a few times and this is what keeps getting kicked back. I feel like the answer’s right infront of me and I’m gonna slap myself for not realizing it :joy:

This is the starting code for that step. Reset again and only change code on the highlighted line with the red arrow.

Haha there it is, thank you! I’ll be slapping myself accordingly now :joy: