You should avoid the "a" + "b" + "c" -kind of concatenation. As strings at immutable in Python you actually makes copies all the time and it's slow!
The alternative used in Steven Bethard's example is preferable. -- http://mail.python.org/mailman/listinfo/python-list