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 trialRobert 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.