http://www.skymind.com/~ocrow/python_string/ Efficient String Concatenation in PythonAn assessment of the performance of several methodsIntroductionBuilding long strings in the Python progamming language can sometimes result in very slow running code. In this article I investigate the computational performance of various string concatenation methods.In Python the string object is immutable - eac..