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

William Finch
William Finch
251 Points

Now, replace the value of "Treehouse" in greeting list with the first item in your name_list variable.

I don't know how to go from the information given.

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

1 Answer

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,735 Points

So instead of saying "Hi, I'm Treehouse" they want you to say "Hi, I'm William", and use the 1st item in your name_list, which is your first name, to put into that string using string interpolation.

I did it like this - I replaced "Treehouse" with a pair of curly braces, then I call the format() method on this string, passing in the 1st item in the name_list (at index 0), then I call split() on the result of that, so I'm chaining the methods together

greeting_list = "Hi, I'm {}".format(name_list[0]).split()