Build an Employee Profile Generator - Step 9

Tell us what’s happening:

In Schritt 9 komme ich nicht weiter. ich habe bereits den Fehler geschrieben und dann umgewandelt auf str. Entweder ist da ein Bug oder ich verstehe die Aufgabe nicht. Kann mir jemand die Lösung sagen?
Vielen dank !

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 = full_name + ' is ' + str(employee_age)
print(f"{full_name} is {employee_age}")

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 9

You are not asked to apply the str() method in this step. This step is all about showing you that a TypeError will be generated if you try to concatenate a number to a string. You will apply the str() method in the next step.

yes, i already change it, but it show me it’s wrong.

The new one:

employee_info = full_name + ’ is ’

employee_info += employee_age

and on the left show me // running tests

  1. You should concatenate employee_age to the end of employee_info.
    // tests completed

i mean i already did it. What’s wrong ?

don’t write on a new line, continue writing on the same line that is creating employee_info