首頁  >  文章  >  後端開發  >  python兩列字串如何合併?

python兩列字串如何合併?

coldplay.xixi
coldplay.xixi原創
2020-06-23 14:20:595147瀏覽

python兩列字串如何合併?

python兩列字串如何合併?

python兩列字串合併的方法:

1、在很多情況下,我們都需要合併字串。例如:需要將姓氏與名字儲存在不同的變數中,然後顯示的時候再將他們合而為一

first_name = 'oliver'
last_name = 'smith'
full_name = first_name + ' ' + last_name
print(full_name)

列印結果:

##oliver smith

2、python中使用( )號來合併字串

這種字串合併的方法稱為拼接,可使用儲存在變數中的資訊來建立完整的資訊

first_name = 'oliver'
last_name = 'smith'
full_name = first_name + ' ' + last_name
print('Hello ' + full_name.title() + '!')

列印結果:

Hello Oliver Smith!

#此處的title()方法將單字的首字母大寫了,讓姓名顯示更格式化

3、也可以建立用一個變數來儲存整個語句

first_name = 'oliver'
last_name = 'smith'
full_name = first_name + ' ' + last_name
msg = 'Hello ' + full_name +'!'print(msg)

這樣,print語句中顯示的就沒那麼複雜了!

推薦教學:《

python影片教學

以上是python兩列字串如何合併?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn