Python 7天快速入門(mén)完整視頻教程:https://www.bilibili.com/video/BV1o84y1Z7J1
Python字符串拼接
在Python中,使用加號(hào) ( + )作為字符串的拼接運(yùn)算符;
案例:
name = "小鋒"
site = "Python知識(shí)分享網(wǎng) magnapowered.com"
print("姓名:" + name + ",個(gè)人網(wǎng)址:" + site)
有時(shí)候,我們需要將字符串與數(shù)值進(jìn)行拼接,而 Python不允許直接拼接數(shù)值和字符串,程序必須先將數(shù)值轉(zhuǎn)換成字符串。 為了將數(shù)值轉(zhuǎn)換成字符串,可以使用str()或 repr()函數(shù),例如如下代碼。
name = "小鋒"
site = "Python知識(shí)分享網(wǎng) magnapowered.com"
tel = 66666666666
print("姓名:" + name + ",個(gè)人網(wǎng)址:" + site + ",聯(lián)系電話(huà):" + str(tel))
print("姓名:" + name + ",個(gè)人網(wǎng)址:" + site + ",聯(lián)系電話(huà):" + repr(tel))