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
You can use this(more efficient) too. (https://softwareengineering.stackexchange.com/questions/304445/why-is-s-better-than-for-concatenation)
s += "%s" %(stringfromelsewhere)