Since Python\'s string can\'t be changed, I was wondering how to concatenate a string more efficiently?
string
I can write like it:
s += string
The recommended method is still to use append and join.