Tell us what’s happening:
"The validator for Step 11 is not accepting the correct code. I am concatenating ’ years old’ at the end of the employee_info variable as requested:
employee_info = full_name + ’ ’ + str(employee_age) + ’ years old’
Your code so far
# User Editable Region
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 + ' ' + str(employee_age) + ' years old'
print(employee_info)
# 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 11