字符串拼接的多种方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串拼接的多种方式相关的知识,希望对你有一定的参考价值。
参考技术A 方法一:+s1="hello"
s2="world"
s3=s1+s2
print(s3)
方法二:join
str.join(sequence)
sequence -- 要连接的元素序列。
示例:
s1="-"
s2=['hello','world']
s3=s1.join(s2)
print(s3)
方法三:用%符号拼接
s1="hello"
s2="world"
s3="%s-%s"%(s1,s2)
print(s3)
方法四:format连接
s1="hello"
s2="world"
s3="0-1".format(s1,s2)
print(s3)
方法五:string模块的Template
from string import Template
fruit1 ="apple"
fruit2 ="banana"
fruit3 ="pear"
str = Template('There are $fruit1, $fruit2, $fruit3 on the table')
print(str.safe_substitute(fruit1=fruit1,fruit2=fruit2,fruit3=fruit3))
print(str.safe_substitute(fruit1=fruit1,fruit2=fruit2,fruit3=fruit3) )
效率比较:+号和join
结论:join的性能远高于+
原因:1)使用 + 进行字符串连接的操作效率低下,是因为python中字符串是不可变的类型,使用 + 连接两个字符串时会生成一个新的字符串,生成新的字符串就需要重新申请内存,当连续相加的字符串很多时(a+b+c+d+e+f+...) ,效率低下就是必然的了。2)join使用比较麻烦,但对多个字符进行连接时效率高,只会有一次内存的申请。而且如果是对list的字符进行连接的时候,这种方法必须是首选
示例佐证:
import time
def decorator(func):
def wrapper(*args, **kwargs):
start_time = time.time()
func()
end_time = time.time()
print(end_time - start_time)
return wrapper
@decorator
def method_1():
s = ""
for i in range(1000000):
s += str(i)
@decorator
def method_2():
l = [str(i) for i in range(1000000)]
s = "".join(l)
method_1()
method_2()
结果:
1.940999984741211
0.2709999084472656
以上是关于字符串拼接的多种方式的主要内容,如果未能解决你的问题,请参考以下文章
列表[‘hello’ , ‘python’ ,’!’ ] 用多种方法拼接,并输出’hello python !’ 以及join()在python中的用法简介