How slow is Python's string concatenation vs. str.join?

Posted by Wayne Werner on Stack Overflow See other posts from Stack Overflow or by Wayne Werner
Published on 2010-06-16T16:58:00Z Indexed on 2010/06/16 17:12 UTC
Read the original article Hit count: 309

As a result of the comments in my answer on this thread, I wanted to know what the speed difference is between the += operator and ''.join()

So what is the speed comparison between the two?

© Stack Overflow or respective owner

Related posts about python

Related posts about string-manipulation