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.

Adrianne Browning
2,602 PointsCreate a variable named greeting_list that's the string "Hi, I'm Treehouse" split on the spaces.
im confused
full_name = "adrianne browning"
name_list = full_name.split()
3 Answers

Chris Freeman
Treehouse Moderator 68,166 PointsSimilar to how you split your full_name into a list of items, the split()
method works on any string.
Given a string "Hi, I'm Treehouse", you can split on spaces by adding the split()
method:
"Hi, I'm Treehouse".split()
You can then assign it to the variable greeting_list
:
greeting_list = "Hi, I'm Treehouse".split()

Michael B
3,990 PointsWhat exactly are you confused about?
The code you have written will solve the problem but you need to create a variable called "greeting_list" (rather than name_list) and use the string specified in the question.
Nyasha Chawanda
7,946 Pointsthe variable name should be set to " greeting_list" not "full_name" so you should code like this: greeting_list ="Hi, I'm Treehouse".split()