由于Python的string
不能更改,我想知道如何更有效地连接字符串?
我可以这样写:
s += stringfromelsewhere
或者像这样:
s = []
s.append(somestring)
# later
s = ''.join(s)
在写这个问题的时候,我发现了一篇关于这个话题的好文章。
http://www.skymind.com/~ocrow/python_string/
但它在Python 2.x中。,所以问题是Python 3中有什么变化吗?