目的
将一些小的字符串合并成一个大字符串,更多考虑的是性能
方法
常见的方法有以下几种:
1.使用+=操作符
代码如下:
bigstring=small1+small2+small3+…+smalln
例如有一个片段pieces=[‘today’,’is’,’really’,’a’,’good’,’day’],我们希望把它联起来
代码如下:
bigstring=’ ‘
for e in pieces:
bigstring+=e+’ ‘
或者用
代码如下:
import operator
bigstring=reduce(operator.add,pieces,’ ‘)
2.使用%操作符
代码如下:
in [33]: print ‘%s,your current money is %.1f’%(‘nupta’,500.52)
nupta,your current money is 500.5
3.使用string的’ ‘.join()方法
代码如下:
in [34]: ‘ ‘.join(pieces)
out[34]: ‘today is really a good day’
关于性能
有少量字符串需要拼接,尽量使用%操作符保持代码的可读性
有大量字符串需要拼接,使用”.join方法,它只使用了一个pieces的拷贝,而无须产生子项之间的中间结果。