> 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>