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

khoreysmith
khoreysmith
3,524 Points

Lists and Strings challenge task 4 of 4

I need to know what I'm doing wrong because I'm not sure the lessons in this section cover the .join() function too well. I'll take any advice I can get, but no need to give me the answer. Thanks.

greeting_list.py
full_name = "Khorey Smith"
name_list = full_name.split()
my_sentence = "Hi, I'm {} ".format(full_name)
greeting_list = my_sentence.split()
greeting = greeting_list.join(full_name)

1 Answer

Dan Johnson
Dan Johnson
40,532 Points

join is a method of the string type. greeting_list is of type list as split returns a list of strings, so that's why you aren't able to call join on it.

join works by taking a collection of strings (such as a list of strings like greeting_list) and combining them together with the string that called it being the separator. For example:

words = ["Hello", "World"]
separator = "|"

joined = separator.join(words)

print(joined)

Will print Hello|World