Build an Employee Profile Generator - 步骤 9

告诉我们发生了什么:

检查代码一直提示将employee_age连接到employee_info ,多次尝试依旧无法解决这个问题

到目前为止你的代码

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'
employee_info += employee_age
print(employee_info)

# User Editable Region

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0

挑战信息:

Build an Employee Profile Generator - 步骤 9

please write on this line, not on a new line

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.