Christian> While I have to say that
>>>> " ".join("123")
Christian> '1 2 3'
>>>>
Christian> is not a feature to me but just annoying ;-)
More annoying than
>>> import string
>>> string.join("123")
'1 2 3'
? ;-)
a-sequence-is-a-sequence-ly y'rs,
Skip