标签: python string
假设我有两个我想连接的字符串:
item = '123' item_2 = '456' item += item_2 print(item)
输出将是:
123456
这正是我想要的!但是就像我们现在一样,python字符串是不可变对象,所以在执行给定代码之后,我们将在内存中存储3个字符串:
'123', '345' and '123456'
所以我的问题是:最有效(和pythonic)的方法是什么?
提前致谢!