Tell us what’s happening:
I checked my code well but it still not working I don’t know what’s wrong exactly
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 += ' Apartment 4B'
# User Editable Region
print(address)
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.3.1 Safari/605.1.15
Challenge Information:
Build an Employee Profile Generator - Step 5