Bitwise OR?

Diez B. Roggisch deets at nospam.web.de
Fri Mar 24 09:40:17 EST 2006


Tim N. van der Leeuw wrote:
> I also wonder if it wouldn't be faster to put the numbers into a list
> and join the list into a string -- did you test with that?

It will be faster - the naive string concatenation is quadratic, whereas the
list-based approach is linear.

Diez



More information about the Python-list mailing list