Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Robert Warren
1,175 Pointslists
Task 2 of the list code challenge is confusing to me. I do not understand the greeting_list part and what I'm doing wrong.
1 Answer

Samuel Webb
25,370 PointsBasically you're doing the same thing as you did for your name, but in one line of code instead of two. You're taking a string and turning into a list. Each item is separated by a space. This is what your code should look like to complete the second part of the challenge:
full_name = 'Samuel Webb'
name_list = full_name.split(" ")
greeting_list = "Hi, I'm X".split(" ")
Kenneth Love
Treehouse Guest TeacherKenneth Love
Treehouse Guest Teacherstr.split()
splits on whitespace by default (spaces, tabs, newlines, etc) so you don't actually have to provide" "
to split on the spaces.Samuel Webb
25,370 PointsSamuel Webb
25,370 PointsGood to know. Thanks.