Python 中字串拼接的使用規則

2021-10-09 23:12:03 字數 1034 閱讀 1460

運算子「+」左邊的字串會在最末尾的地方拼接上「+」右邊的字串。

name=

'李明'

age=

16height=

174.5

print

('他叫'

+name+

',今年'

+str

(age)

+'歲,他的身高是'

+str

(height)

+'厘公尺'

)#輸出 他叫李明,今年16歲,他的身高是174.5厘公尺

語法】 變數/字串 *正整數

輸出的是變兩個所代表的字串或者字串本身的正整數倍。

a=

'hello python'

print

(a*4

)#輸出 hello pythonhello pythonhello pythonhello python

print

((a+

'\n')*

4)"""輸出 hello python

hello python

hello python

hello python"""

【語法】

變數1=字串

變數2=『***%s***』%變數1

變數3=整數

變數4=『***%s***%d』%(變數1,變數3)

常用佔位符

描述%s

格式化字串

%d格式化整數

%f格式化浮點數,可指定小數點後精度,如:%.2f表示保留兩位小數

name=

'李明'

age=

16height=

174.5

print

('他叫%s,今年%d歲,他的身高是%f厘公尺'

%(name,age,height)

)#輸出 他叫李明,今年16歲,他的身高是174.500000厘公尺

拼接字串 Python中字串拼接的N 1種方法

python拼接字串一般有以下幾種方法 1.直接通過 操作符拼接 輸出結果 hello world 使用這種方式進行字串連線的操作效率低下,因為python中使用 拼接兩個字串時會生成乙個新的字串,生成新的字串就需要重新申請記憶體,當拼接字串較多時自然會影響效率。2.通過str.join 方法拼接 ...

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 ...