Build an Employee Profile Generator - Step 5

Tell us what’s happening:

Step 5 in:title
address = ‘123 Main Street’
address +=’ Aparment 4B ’

Your code so far

first_name = 'John'
last_name = 'Doe'
print(first_name)
print(last_name)
full_name = first_name + ' ' + last_name
print(full_name)
address = '123 Main Street'  

# User Editable Region

address +='  Aparment 4B '

# User Editable Region

print(address)  

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build an Employee Profile Generator - Step 5

Hi @AzadAyoubi2010 ,

Please make sure the string you are concatenated matches to the instructions exactly. Best to copy/paste to avoid this type of issue.

Happy coding!

first_name = ‘John’
last_name = ‘Doe’
print(first_name)
print(last_name)
full_name = first_name + ’ ’ + last_name
print(full_name)
address = ‘123 Main Street’

address += ‘, Apartment 4B’
print(address)

The issue is so dumb, just need to add “,” before Apartment

Please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Help button image located on each challenge. This will automatically import your code in a readable format and pull in the challenge URL while still allowing you to ask any question about the challenge or your code.

Thank you.