Build an Employee Profile Generator - Step 15

Tell us what’s happening:

It just keeps saying “you should have a variable named salary”. Clearly, I already do but it won’t let me go to the next step. Help, please!

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
employee_info = full_name + ' is ' + str(employee_age) + ' years old'
experience_years = 5
experience_info = 'Experience: ' + str(experience_years) + ' years'

# User Editable Region

position = 'Data Analyst'
salary = 7500
employee_card = f'Employee: {full_name} | Age: {employee_age} | Position: {position} | Salary: ${salary}'
print(employee_card)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15

Challenge Information:

Build an Employee Profile Generator - Step 15

it seems the test is also checking the value at the same time, I will make sure to fix that

but meanwhile confront the value requested, and the value that the variable has

1 Like

LOL I was just missing a 0, I solved it seconds after, but thank you!