Build an Employee Profile Generator - Step 9

Tell us what’s happening:

I have some doubt’s so help me in this step what i do

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 = " first_name " + " is " + " employee_age "
print(employee_info)





# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 9

employee_info = full_name + ' is '

This was the starting code. You were just asked to concatenate employee_age to it. Is employee_age a string or a variable. How do we concatenate variables?

using the quotation marks “ “ in this way will not print your variables it will print exactly what you typed in the quotation marks. Try fixing this first and see if you get any more errors.