Cuéntanos qué está pasando:
am on a block at this step because it says concatenate years old at the end but when I do i does not do anything it keeps telling met to concatenate I have my employee_info: then the code and after that I have employee_info +=’ years old’ and on my terminal it shows John Doe 28 years old
Tu código hasta el momento
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 = full_name + ' is ' + str(employee_age)
employee_info += ' years old'
print(employee_info)
# User Editable Region
Información de tu navegador:
El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 OPR/129.0.0.0
Información del Desafío:
Construye un generador de perfiles de empleados. - Paso 11