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

How do you change "Treehouse" in greeting_list to the first item in your name_list variable.

I have tried many ways, but it's not working

greeting_list.py
full_name = "karunya nathan"

name_list = full_name.split()

greeting_list = "Hi, I'm Treehouse".split()

1 Answer

Remember the split() returns a list of words from a string. So now after you split them they become lists. to access lists you need to use the " [] " operator like so:

greeting_list[2]

this will access the index 2 in the list, greeting_list. Now in order to change the index 2 with something else you can do this:

greeting_list[2] = name_list[0]

this will change the index 2 of greeting_list with the 0 index of name_list.

I hope this helps.