1 temp = ['there are ',fruit1,',',fruit2,',',fruit3,' on the table']
2 ''.join(temp)
在python的實際開發中,很多都需要用到字串拼接,python中字串拼接有很多:
1. 用+
符號拼接
str = 'there are'+fruit1+','+fruit2+','+fruit3+' on the table'
2.用%
符號拼接
str = 'there are %s, %s, %s on the table.' % (fruit1,fruit2,fruit3)
3.用join()
方法拼接
1 temp = ['there are ',fruit1,',',fruit2,',',fruit3,' on the table']
2 ''.join(temp)
4.用format()
方法拼接
1 str = 'there are {}, {}, {} on the table'
2 str.format(fruit1,fruit2,fruit3)
5.用string
模組中的template
物件
1 from string import template
2 str = template('there are $, $, $ on the table') #此處用的是{},別搞錯了哦
3 str.substitute(fruit1=fruit1,fruit2=fruit2,fruit3=fruit3) #如果缺少引數,或報錯如果使用safe_substitute()方法不會
4 str.safe_substitute(fruit1=fruit1,fruit2=fruit2)
python 字串拼接
閱讀目錄 1.加號 2.逗號 3.直接連線 4.格式化 5.join 6.多行字串拼接 回到頂部 示例版本為py2 回到頂部 第一種,有程式設計經驗的人,估計都知道很多語言裡面是用加號連線兩個字串,python裡面也是如此直接用 來連線兩個字串 print python tab 結果 pythont...
Python字串拼接
小關ent 在python的實際開發中,很多都需要用到字串拼接,python中字串拼接有很多,今天總結一下 fruit2 bananas fruit3 pears 1.用 符號拼接 用 拼接字串如下 1 str there are fruit1 fruit2 fruit3 on the table ...
Python字串拼接
今天總結一下python中字串拼接的方法 定義乙個字元 var xiaoming str1 var is a shy boy 前面拼接 str2 i think var is shy 中間拼接 str3 the shy boy is var 末尾拼接 雖然使用該方法也可以拼接字串,但它的效率很低,不...