python兩列字串如何合併?
python兩列字串合併的方法:
1、在很多情況下,我們都需要合併字串。例如:需要將姓氏與名字儲存在不同的變數中,然後顯示的時候再將他們合而為一
first_name = 'oliver' last_name = 'smith' full_name = first_name + ' ' + last_name print(full_name)
列印結果:
##oliver smith
first_name = 'oliver' last_name = 'smith' full_name = first_name + ' ' + last_name print('Hello ' + full_name.title() + '!')列印結果:
Hello Oliver Smith!
first_name = 'oliver' last_name = 'smith' full_name = first_name + ' ' + last_name msg = 'Hello ' + full_name +'!'print(msg)這樣,print語句中顯示的就沒那麼複雜了! 推薦教學:《
python影片教學》
以上是python兩列字串如何合併?的詳細內容。更多資訊請關注PHP中文網其他相關文章!