Comment Winter is coming (Score 0) 195
I guess Game of Thrones had it right all along.
Avoid this:
s = ""
for substring in list:
s += substring
Use s = "".join(list) instead. The former is a very common and catastrophic mistake when building large strings.
A bug in the code is worth two in the documentation.