加号
使用简单直接,但效率低
website = ‘python’ + ‘tab’ + ‘.com’
逗号法
字符串之间会多出一个空格
str_a = ‘python’
print(‘hello’, str_a, ‘!’)
输出hello python !
直接拼接法
Python独有拼接法,只能用于字符串的拼接,不能用于变量拼接#code
print(‘abc’’xyz’)
#output
adcxyz
格式化法:使用%或者format进行拼接
text1 = “Hello”
>>> text2 = “World”
>>> “%s%s”%(text1,text2)
‘HelloWorld’join函数法
listStr = [ ‘python’ , ‘tab’ , ‘.com’ ]
website = ‘’.join(listStr)多行字符串拼接法
text = (‘666’
‘555’
‘444’
‘333’)
print(text)
666555444333