Please help me figure out what I’m doing wrong
Add a space after f’Employee: {full_name} |
Welcome to the forum @Cbear2026
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.
The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Happy coding
Still didn’t work but thank you for suggesting
Tell us what’s happening:
My code is getting f string update telling me I’m missing it I’ve tried everything it’s there I triple checked I tried spaces no spaces double checked spelling and uppercases it’s been a day please help
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'
print(employee_info)
experience_years = 5
experience_info = 'Experience: ' + str(experience_years) + ' years'
print(experience_info)
# User Editable Region
employee_card=f'Employee:{full_name}|Age: {employee_age}'
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/17.5 Safari/605.1.15
Challenge Information:
Build an Employee Profile Generator - Step 14
The spacing needs to be exactly like the string in the instructions:
Employee: [name] | Age: [age]
Please add space like this.
code removed by moderator
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. How to Help Someone with Their Code Using the Socratic Method
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

