[Python-Dev] ''.join in 1.6

Fredrik Lundh fredrik@pythonware.com
Wed, 19 Jan 2000 21:43:36 +0100


> In 1.6, I should do it this way:
> '\t'.join(s)
>=20
> I think it would be better to have that method on the *list*:
> s.join('\t')
>=20
> That's more clear, isn't it?

what if "s" is a tuple?  an array?  a user-defined
sequence type?

</F>