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.

helmi al kindy
1,371 PointsHow do I split on "spaces" ?
I don't understand the question could someone help me to add a split to the variable that I created?
full_name = 'jon doe'
name_list = full_name.split(" ")
greeting_list = "Hi, I'm Treehouse"
greeting_list.split(" ")
1 Answer

Dan Johnson
40,532 PointsYou have it correct. You just need to store the result of the call to split back into greeting_list:
greeting_list = greeting_list.split(" ")
Or you can do it in one line:
greeting_list = "Hi, I'm Treehouse".split(" ")
You don't even have to pass in " " for the argument if you don't want. Splitting on a space is the default for split.
helmi al kindy
1,371 Pointshelmi al kindy
1,371 PointsOK thanks, but how is this used in real life ?
Dan Johnson
40,532 PointsDan Johnson
40,532 PointsYou could use the split method to separate out formatted data from a file or elsewhere. For example you could grab all the paths from the PATH environment variable by splitting on ';'.