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 trialIan Crook
974 PointsHow do I change "Treehouse" in greeting_list to the first item in your name_list variable?
Kinda stuck here.
full_name = "First Last"
name_list = full_name.split(" ")
greeting_list = "Hi, I'm Treehouse".split(" ")
2 Answers
Chase Marchione
155,055 PointsHi Ian,
Since we split the "Hi, I'm Treehouse" string based on spaces and stored the resulting split data in greeting_list, "Treehouse" is the third item in the greeting_list list now.
Because lists start at 0 (meaning that the first item in a list is considered the '0th' item), we will be setting the the third value in greeting_list equal to the first value in name_list.
greeting_list[2] = name_list[0]
Hope this helps!
Rogier Leegwater
5,589 Pointsyes thx
Ian Crook
974 PointsIan Crook
974 PointsYes, it does, Thanks CJ!