Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This has always confused me. It seems like this would be nicer:

my_list = ["Hello", "world"]
print my_list.join("-")
# Produce: "Hello-world"

Than this:

my_list = ["Hello", "world"]
print "-".join(my_list)
# Produce: "Hello-world"

Is there a specific reason it does it like this?

share|improve this question
1  
What should the result of [None, 1, 3j, u"\u2009", Ellipsis].join(".") be? – tzot Jan 30 '09 at 18:31
62  
The same as ".".join [None, 1, 3j, u"\u2009", Ellipsis] returns: TypeError: sequence item 0: expected string, NoneType found – morganchristiansson Apr 4 '10 at 3:10
7  
Basically python uses argument.do_something object instead of object.do_something argument. – morganchristiansson Apr 4 '10 at 3:12
I just realized that the first print you do doesn't work at all. There's not join method for lists: docs.python.org/tutorial/datastructures.html#more-on-lists – Menda Dec 21 '11 at 15:53
6  
@Menda That's the point of his question. ;) – Pascal Dec 14 '12 at 23:04
show 2 more comments

6 Answers

up vote 252 down vote accepted

It's because any iterable can be joined, not just lists, but the result and the "joiner" are always strings.

E.G:

import urllib2
print '\n############\n'.join(urllib2.urlopen('http://data.stackexchange.com/users/7095'))
share|improve this answer
2  
I found an interesting blog post that talks about this: lucumr.pocoo.org/2011/7/9/python-and-pola/… – mehaase Jun 26 '12 at 18:16

Because the join() method is in the string class, instead of the list class?

I agree it looks funny.

See http://www.faqs.org/docs/diveintopython/odbchelper_join.html:

Historical note. When I first learned Python, I expected join to be a method of a list, which would take the delimiter as an argument. Lots of people feel the same way, and there’s a story behind the join method. Prior to Python 1.6, strings didn’t have all these useful methods. There was a separate string module which contained all the string functions; each function took a string as its first argument. The functions were deemed important enough to put onto the strings themselves, which made sense for functions like lower, upper, and split. But many hard-core Python programmers objected to the new join method, arguing that it should be a method of the list instead, or that it shouldn’t move at all but simply stay a part of the old string module (which still has lots of useful stuff in it). I use the new join method exclusively, but you will see code written either way, and if it really bothers you, you can use the old string.join function instead.

share|improve this answer
3  
Thank you for the "historical note". I hadn't seen that before. :-) – Evan Fosmark Jan 30 '09 at 7:27

I agree that it's counterintuitive at first, but there's a good reason. Join can't be a method of a list because:

  • it must work for different iterables too (tuples, generators, etc.)
  • it must have different behavior between different types of strings.

There are actually two join methods (Python 3.0):

>>> b"".join
<built-in method join of bytes object at 0x00A46800>
>>> "".join
<built-in method join of str object at 0x00A28D40>

If join was a method of a list, then it would have to inspect its arguments to decide which one of them to call. And you can't join byte and str together, so the way they have it now makes sense.

share|improve this answer
3  
Uhm, no? It would just need to call string.split or byte.split depending on whether the argument is a string or byte. The new split method would be defined on all basic iterable classes and could pass self to the string.split / byte.split functions. – morganchristiansson Apr 4 '10 at 3:08
most clear and simple...thanks for the two methods – Cris Stringfellow Oct 20 '12 at 8:14

This was discussed in the String methods... finally thread in the Python-Dev achive, and was accepted by Guido. This thread began in Jun 1999, and str.join was included in Python 1.6 (which supported Unicode) was released in Sep 2000. Python 2.0 (supported str methods including join) was released in Oct 2000.

  • There were four options proposed in this thread:
    • str.join(seq)
    • seq.join(str)
    • seq.reduce(str)
    • join as a built-in function
  • Guido wanted to support not only lists, tuples, but all sequences/iterables.
  • seq.reduce(str) is difficult for new-comers.
  • seq.join(str) introduces unexpected dependency from sequences to str/unicode.
  • join() as a built-in function would support only specific data types. So using a built in namespace is not good. If join() supports many datatypes, creating optimized implementation would be difficult, if implemented using the __add__ method then it's O(n2).
  • The separater string (sep) should not be omitted. Explicit is better than implicit.

There are no other reasons offered in this thread.

Here are some additional thoughts (my own, and my friend's):

  • Unicode support was coming, but it was not final. At that time UTF-8 was the most likely about to replace UCS2/4. To calculate total buffer length of UTF-8 strings it needs to know character coding rule.
  • At that time, Python had already decided on a common sequence interface rule where a user could create a sequence-like (iterable) class. But Python didn't support extending built-in types until 2.2. At that time it was difficult to provide basic iterable class (which is mentioned in another comment).

Guido's decision is recorded in a historical mail, deciding on str.join(seq):

Funny, but it does seem right! Barry, go for it...
--Guido van Rossum

share|improve this answer

Primarily because the result of a someString.join() is a string.

The sequence (list or tuple or whatever) doesn't appear in the result, just a string. Because the result is a string, it makes sense as a method of a string.

share|improve this answer
3  
It's an operation you do on a list, so it would make sense as a method of list (for exemple). – Ikke Sep 7 '09 at 9:25
It's an operation you do on the newly created string, and a list, tuple, set, dict, generator, collections.* and all the other possible iterables simply can't know how to manipulate strings correctly. – Roger Pate Dec 17 '09 at 19:32
1  
@Roger Pate: No, it's not something you do on a newly created string. The someString object is an existing string which applies join to each object in the sequence. The existing someString object does a massive coerce to it's own type. Any other class could implement a join that coerced things to it's own class and operated on them. An integer join, for example could behave like sum. – S.Lott Dec 17 '09 at 21:50

Think of it as the natural orthogonal operation to split.

I understand why it is applicable to anything iterable and so can't easily be implemented just on list.

For readability, I'd like to see it in the language but I don't think that is actually feasible - if iterability were an interface then it could be added to the interface but it is just a convention and so there's no central way to add it to the set of things which are iterable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.