i don’t know what i need to do to make the code pass, if i type employee_info = full_name + ’ i s ’ + employee_age, “it will say typerroryou cannot concatenate str and int” , if I type + ’ is ’ + employee_info + employee_age, it will say , “name error employee_info is not define”, if i type + employee_info + ’ i s ’ + employee_info += employee_age, "it will say typerror ", can anyone explan to me what am i doing wrong, am almost at my wits end
Your code so far
first_name = 'John'
last_name = 'Doe'
full_name = first_name + ' ' + last_name
address = '123 Main Street'
address += ', Apartment 4B'
# User Editable Region
employee_age = 28
employee_info = full_name + 'is' + employee_age
# 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
this thing is driving me nut, it not taking me to the next step, in the console it’s saying typeError, when i use the check your code it says you should update the employee_info assignment to concatenate the employee_age at the end, this is my code. please i need advice on what i need to do.