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 trial

Python Python Basics (Retired) Shopping List Lists and Strings

replace treehouse in greeting_list with the firstname in name_list

full_name = "venix cador" name_list = full_name.split() greeting_list = "Hi, I'm Treehouse".split() greeting_list = "Hi, I'm {}".format(name_list[0])//that's what i was trying to do

3 Answers

Hi Venix!

Just remember that the exercise is focusing on using lists specifically...the question as that you replace Treehouse - the third item in the greeting_list at index 2, with the first item in full_list at index 0.

So with my name, I might do something like the following:

full_name = "Rhys Yorke"
name_list = full_name.split()
greeting_list = "Hi, I'm Treehouse".split()
greeting_list[2] = name_list[0]
Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Since greeting_list is a list each item can be addressed by an index. "Treehouse" is the 3rd item which has an index of 2 (due to 0-based indexing). Changing this item is as easy as:

greeting_list[2] = name_list[0]

Thank you guys I was over thinking it.