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

Ian Crook
Ian Crook
974 Points

How do I change "Treehouse" in greeting_list to the first item in your name_list variable?

Kinda stuck here.

greeting_list.py
full_name = "First Last"
name_list = full_name.split(" ")
greeting_list = "Hi, I'm Treehouse".split(" ")

2 Answers

Chase Marchione
Chase Marchione
155,055 Points

Hi 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!

Ian Crook
Ian Crook
974 Points

Yes, it does, Thanks CJ!