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

Ahmed Elsawey
PLUS
Ahmed Elsawey
Courses Plus Student 3,527 Points

I can't move string elements of lists to other lists

I have no idea how to move treehouse from greeting list to name list as the first element

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

(greeting_list[2]).join(name_list)

1 Answer

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

After the line 3, the greeting_list becomes the list ["Hi,", "I'm", "Treehouse"].

"Treehouse" is the 3rd item on the list, you just need to replace it with the 1st item in the name_list variable.

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

greeting_list[2] = name_list[0]