您好,登錄后才能下訂單哦!
這篇文章主要講解了“Python的字符串怎么表示”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“Python的字符串怎么表示”吧!
單引號(hào) " "
雙引號(hào) " "
多引號(hào) """ """" 、 """ """
print("hello world") print("hello world") print("""hello world""") # 輸出結(jié)果 hello world hello world hello world
為什么需要單引號(hào),又需要雙引號(hào)
因?yàn)榭梢栽趩我?hào)中包含雙引號(hào),或者在雙引號(hào)中包含單引號(hào)
# 單雙引號(hào) print("hello "poloyy" world") print("this is my name "poloyy"") # 輸出結(jié)果 hello "poloyy" world this is my name "poloyy"
正常情況下,單引號(hào)和雙引號(hào)的字符串是不支持直接在符號(hào)間換行輸入的,如果有需要可以用多引號(hào)哦!
# 多行字符串 print(""" hello world """) print(""" this is my name poloyy """) # 輸出結(jié)果 hello world this is my name poloyy
在字符前加 就行
常見(jiàn)的有
:換行
:縮進(jìn)
:回車(chē)
栗子
比如在字符串雙引號(hào)間還有一個(gè)雙引號(hào),就需要用轉(zhuǎn)義符
# 轉(zhuǎn)義符 print("hello "poloyy" world") print("my name is "poloyy"") # 輸出結(jié)果 hello "poloyy" world my name is "poloyy"
假設(shè) 只想當(dāng)普通字符處理呢?
print("反斜杠 是什么") print("換行符是什么 ") # 輸出結(jié)果 反斜杠 是什么 換行符是什么
window 路徑的栗子
print("c: othingtype") print("c: othingtype") # 輸出結(jié)果 c: othing c: type c: othingtype
更簡(jiǎn)潔的解決方法
用轉(zhuǎn)義符會(huì)導(dǎo)致可讀性、維護(hù)性變差,Python 提供了一個(gè)更好的解決方法:在字符串前加r
print(r"c: othingtype") # 輸出結(jié)果 c: othingtype
獲取字符串中某個(gè)字符
字符串是一個(gè)序列,所以可以通過(guò)下標(biāo)來(lái)獲取某個(gè)字符
# 獲取字符串某個(gè)字符 str = "hello world" print(str[0]) print(str[1]) print(str[6]) print(str[-1]) print(str[-5]) # 輸出結(jié)果 h e w d l
如果是負(fù)數(shù),那么是倒數(shù),比如 -1 就是倒數(shù)第一個(gè)元素,-5 就是倒數(shù)第五個(gè)元素
Python 中,可以直接通過(guò)切片的方式取一段字符
切片的語(yǔ)法格式
str[start : end : step]
start:閉區(qū)間,包含該下標(biāo)的字符,第一個(gè)字符是 0
end:開(kāi)區(qū)間,不包含該下標(biāo)的字符
step:步長(zhǎng)
栗子
print("hello world"[:] ", "hello world"[:]) # 取全部字符 print("hello world"[0:] ", "hello world"[0:]) # 取全部字符 print("hello world"[6:] ", "hello world"[6:]) # 取第 7 個(gè)字符到最后一個(gè)字符 print("hello world"[-5:] ", "hello world"[-5:]) # 取倒數(shù)第 5 個(gè)字符到最后一個(gè)字符 print("hello world"[0:5] ", "hello world"[0:5]) # 取第 1 個(gè)字符到第 5 個(gè)字符 print("hello world"[0:-5] ", "hello world"[0:-5]) # 取第 1 個(gè)字符直到倒數(shù)第 6 個(gè)字符 print("hello world"[6:10] ", "hello world"[6:10]) # 取第 7 個(gè)字符到第 10 個(gè)字符 print("hello world"[6:-1] ", "hello world"[6:-1]) # 取第 7 個(gè)字符到倒數(shù)第 2 個(gè)字符 print("hello world"[-5:-1] ", "hello world"[-5:-1]) # 取倒數(shù)第 5 個(gè)字符到倒數(shù)第 2 個(gè)字符 print("hello world"[::-1] ", "hello world"[::-1]) # 倒序取所有字符 print("hello world"[::2] ", "hello world"[::2]) # 步長(zhǎng)=2,每?jī)蓚€(gè)字符取一次 print("hello world"[1:7:2] ", "hello world"[1:7:2]) # 步長(zhǎng)=2,取第 2 個(gè)字符到第 7 個(gè)字符,每?jī)蓚€(gè)字符取一次 # 輸出結(jié)果 hello world"[:] hello world hello world"[0:] hello world hello world"[6:] world hello world"[-5:] world hello world"[0:5] hello hello world"[0:-5] hello hello world"[6:10] worl hello world"[6:-1] worl hello world"[-5:-1] worl hello world"[::-1] dlrow olleh hello world"[::2] hlowrd hello world"[1:7:2] el
感謝各位的閱讀,以上就是“Python的字符串怎么表示”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)Python的字符串怎么表示這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。