I have tried to update the variable by adding a space in between first_name and last_name but it is still kicking back an error. I tried resetting it multiple times but still gives me an error
Your code so far
first_name = 'John'
last_name = 'Doe'
print(first_name)
print(last_name)
# User Editable Region
full_name = first_name + last_name
# User Editable Region
print(full_name)
full_name = first_name + (' ') + last_name
print(full_name)
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36
Thank you for the quick reply! I’ve tried resetting it and removing the parentheses a few times and this is what keeps getting kicked back. I feel like the answer’s right infront of me and I’m gonna slap myself for not realizing it