python拼接字串一般有以下幾種方法:
1、直接通過(+)操作符拼接
s = 'hello'+' '+'world'+'!'輸出結果:hello world!print(s)
使用這種方式進行字串連線的操作效率低下,因為python中使用 + 拼接兩個字串時會生成乙個新的字串,生成新的字串就需要重新申請記憶體,當拼接字串較多時自然會影響效率。
2、通過str.join()方法拼接
strlist=['hello',' ','world','!']輸出結果:hello world!print(''.join(strlist))
這種方式一般常使用在將集合轉化為字串,」.join()其中」可以是空字元,也可以是任意其他字元,當是任意其他字元時,集合中字串會被該字元隔開,例如:
strlist=['hello',' ','world','!']輸出結果:hello, ,world,!print(','.join(strlist))
3、通過str.format()方法拼接
s='{} {}!'.format('hello','world')輸出結果:hello world!print(s)
通過這種方式拼接字串需要注意的是字串中{}的數量要和format方法引數數量一致,否則會報錯。
4、通過(%)操作符拼接
s = '%s %s!' % ('hello', 'world')輸出結果:hello world!print(s)
這種方式與str.format()使用方式基本一致。
5、通過()多行拼接
s = (輸出結果:hello world!'hello'
'world'
print(s)
python遇到未閉合的小括號,自動將多行拼接為一行。
6、通過string模組中的template物件拼接
from string import template輸出結果:hello world!s = template('$ $!')
print(s.safe_substitute(s1='hello',s2='world'))
template的實現方式是首先通過template初始化乙個字串。這些字串中包含了乙個個key。通過呼叫substitute或safe_subsititute,將key值與方法中傳遞過來的引數對應上,從而實現在指定的位置匯入字串。這種方式的好處是不需要擔心引數不一致引發異常,如:
from string import template輸出結果:hello world $!s = template('$ $ $!')
print(s.safe_substitute(s1='hello',s2='world'))
7、通過f-strings拼接
在python3.6.2版本中,pep 498 提出一種新型字串格式化機制,被稱為「字串插值」或者更常見的一種稱呼是f-strings,f-strings提供了一種明確且方便的方式將python表示式嵌入到字串中來進行格式化:
s1='hello'輸出結果:hello world!s2='world'
print(f' !')
在f-strings中我們也可以執行函式:
def power(x):輸出結果:4 * 4 = 16return x*x
x=4print(f' * = ')
而且f-strings的執行速度很快,比%-string和str.format()這兩種格式化方法都快得多。
python筆記 字串連線
p.p1 p.p2 p.p3 p.p4 p.p5 p.p6 p.p7 p.p8 span.s1 span.s2 span.s3 字串連線 title python大會 time 2018 01 06 5 print protocol domain url data 使用加號連線字串 6 print ...
字串連線
輸入n個字串s i 你要把他們按某個順序連線起來,使得字典序最小。1 n 100 每個字串長度 100 字串只包含小寫字母 input 第一行乙個整數n。接下來每行乙個字串s i output 一行乙個字串表示把輸入的n個字串按某個順序連線之後的結果input示例 6 itlooks like an...
字串連線
mysql select abc 123 abc 123 123 1 row in set,1 warning 0.00 sec mysql select 123 123 123 123 246 1 row in set 0.00 sec mysql select 123 123 123 123 2...