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 trialsaro lin
Courses Plus Student 531 Points.join() ?
what is the purpose of .join() ?
2 Answers
Gregory Katchmar
10,912 PointsCreates a string from a list. Given list['a', 'b', 'c'], the command ', '.join(list) will result in the string "a, b, c"
The command will only work on 100% string lists, so if an integer is in play, no go.
Haider Ali
Python Development Techdegree Graduate 24,728 PointsHi Saro. As Chris said, `join()' is a method which is used on a string. It can be used to join things together into a string such as items in a list. E.g:
', '.join(['1', '2', '3'])
>>> '1, 2, 3'
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsMoved to answer.
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsExtending Gregory's answer, the
join()
is a string method (operates on the associated string). It says "I am a string. Use me as the glue to 'join' a container of string objects into one long string object".Many ask why isn't
join
alist
method since that is what is usually joined. As Gregory mentioned, if all of the items in the list to be joined are not cast as strings, then an error is raised. So it makes more sense as astr
method. Additionally, you can use a variety of containers as the argument tojoin
: