Re: String concatenation performance

2006-05-12 Thread Cristian.Codorean
Thanks guys ! Growing and learning :) -- http://mail.python.org/mailman/listinfo/python-list

String concatenation performance

2006-05-11 Thread Cristian.Codorean
I was just reading a "Python Speed/Performance Tips" article on the Python wiki http://wiki.python.org/moin/PythonSpeed/PerformanceTips and I got to the part that talks about string concatenation and that it is faster when using join instead of += because of strings being immutable. So I have trie