Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Anthony Boardman
PLUS
Anthony Boardman
Courses Plus Student 2,606 Points

Python Basics Challenge Task 4 of 4 Great! Finally, make a variable named greeting where you join greeting_list back int

I'm stuck on Challenge four of the list section! The question is:

Great! Finally, make a variable named greeting where you join greeting_list back into a string, separated by spaces. You should end up with "Hi, I'm <your first name>" as the value of greeting.

This is my code so far

full_name = "Anthony Boardman"
name_list = full_name.split()
greeting_list = "Hi, I'm {}".format(full_name).split()

My head is in the bin!! I can't figure this out

2 Answers

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

You've put your full name into the greeting. For the last step, you need to turn the list in greeting_list back into a string.

Trent Burkenpas
Trent Burkenpas
22,388 Points

I know this a month old, but incase other people come across this question needing help.

Make sure you use .join() to turn list back into a string.