python 字符串拼接
时间:2019-03-03 23:06:08
收藏:0
阅读:169
str1 = ‘abc‘ str2 = ‘def‘ str3 = str1 + str2 print(str3)
这种方法只需要申请一次内存。
原文:https://www.cnblogs.com/xiaozx/p/10468230.html
评论(0)