您好,登錄后才能下訂單哦!
本文實例總結(jié)了Python實現(xiàn)string字符串連接的方法。分享給大家供大家參考,具體如下:
以下基于python 2.7版本,代碼片段真實有效。
string類型 ‘+'號連接
>>> str1="one" >>> str2="two" >>> str1+str2 'onetwo' >>>
string類型 ‘,'號連接成tuple類型
>>> str1="one" >>> str2="two" >>> str1 ,str2 ('one', 'two') >>> type((str1 ,str2)) <type 'tuple'> >>>
string類型格式化連接
>>> str1="one" >>> str2="two" >>> "%s%s"%(str1,str2) 'onetwo'
format
格式化>>> "{test}_666@{data:.2f}".format(test="Land", data=10.1) 'Land_666@10.10'
%(word)type
】print
函數(shù)格式化>>> print "%(test)s666%(last)d" % {"test": "Land", "last": 101} Land666101
string類型空格自動連接
>>> "one" "two" 'onetwo'
這里需要注意的是,參數(shù)不能代替具體的字符串寫成
錯誤方式:
>>> str1="one" >>> str2="two" >>> str1 str2 File "<stdin>", line 1 str1 str2 ^ SyntaxError: invalid syntax
string類型反斜線多行連接
>>> test = "str1 " \ ... "str2 " \ ... "str3" >>> test 'str1 str2 str3' >>>
string類型乘法連接
>>> str1="one" >>> 1*str1*4 'oneoneoneone' >>>
string類型join方式連接list/tuple類型
>>> str1="one" >>> list1=["a","b","c"] >>> tuple1=("H","I","J") >>> str1.join(list1) 'aonebonec' >>> str1.join(tuple1) 'HoneIoneJ'
這里的join
有點像split
的反操作,將列表或元組用指定的字符串相連接;
但是值得注意的是,連接的列表或元組中元素的類型必須全部為string類型,否則就可能報如下的錯誤:
>>> list2=["a",2,"c",4.3] >>> str1.join(list2) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: sequence item 1: expected string, int found >>>
join還有一個妙用,就是將所有l(wèi)ist或tuple中的元素連接成string類型并輸出;
>>> list1 ['a', 'b', 'c'] >>> "".join(list1) 'abc' >>> type("".join(list1)) <type 'str'> >>>
與join方式類似
>>> "".join(["Land" for i in xrange(3)]) 'LandLandLand' >>> "0".join(["Land" for i in xrange(2)]) 'Land0Land' >>>
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python字符串操作技巧匯總》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》及《Python入門與進(jìn)階經(jīng)典教程》
希望本文所述對大家Python程序設(shè)計有所幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。