溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python中的字符串用表示什么

發(fā)布時(shí)間:2020-09-24 14:36:54 來源:億速云 閱讀:229 作者:Leah 欄目:編程語言

這篇文章運(yùn)用簡(jiǎn)單易懂的例子給大家介紹python中的字符串用表示什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

python的字符串就是表示一串字符,字符可以是中文,英文或者數(shù)字,或者混合的文本。python字符串的幾種表達(dá)方式

1 使用單引號(hào)擴(kuò)起來字符串

>>> 'my python lession'       #以單引號(hào)將字符串?dāng)U起來
'my python lession'
>>> a = 'my python lession'   
>>> print(a)
my python lession

2 使用雙引號(hào)將字符串?dāng)U起來

>>> "my python lession"    #使用雙引號(hào)將字符串?dāng)U起來
'my python lession'
>>> a = "my python lession"
>>> print(a)
my python lession

3 當(dāng)想要輸出單引號(hào)或者雙引號(hào)時(shí)(將單引號(hào),雙引號(hào)作為普通字符輸出),通過 \ 進(jìn)行轉(zhuǎn)義

>>> 'python \'escape'           
"python 'escape"
>>> a = 'python \'escape'
>>> print(a)
python 'escape     #通過\反斜線將單引號(hào)進(jìn)行轉(zhuǎn)移,不在乎最外層的是單引號(hào)還是雙引號(hào),反正是中間是字符串,
有\(zhòng)就將后面的單引號(hào),雙引號(hào)進(jìn)行轉(zhuǎn)義
>>> 
>>> 'python \" escape'
'python " escape'
>>> a = 'python \" escape'
>>> print(a)
python " escape
>>> 
>>> "python \' escape"
"python ' escape"
>>> a = "python \' escape"
>>> print(a)
python ' escape
>>> 
>>> "python \" escape"
'python " escape'
>>> a = "python \" escape"
>>> print(a)
python " escape

4 通過單引號(hào),雙引號(hào)混合的方式輸出單引號(hào),雙引號(hào)

>>> '"double quote"'    #單引號(hào)中,使用雙引號(hào),直接將雙引號(hào)輸出
'"double quote"'
>>> a = '"double quote"'
>>> print(a)
"double quote"
>>> 
>>> "'single quote'"     #雙引號(hào)中,使用單引號(hào),將單引號(hào)輸出
"'single quote'"
>>> a = "'single quote'"
>>> print(a)
'single quote'
>>> 
>>> ""double""   #雙引號(hào)中直接輸出雙引號(hào)報(bào)錯(cuò)
SyntaxError: invalid syntax
>>> "\"double\""  #雙引號(hào)中直接輸出雙引號(hào)報(bào)錯(cuò),但是將其中的雙引號(hào)通過反斜線進(jìn)行轉(zhuǎn)義就可以了
'"double"'
>>> a = "\"double\""
>>> print(a)
"double"

在交互式解釋器,輸出的字符串都是通過引號(hào)擴(kuò)起來的,如果輸出有單引號(hào),那么最終用雙引號(hào)擴(kuò)起來,如果輸出字符串有雙引號(hào),用單引號(hào)擴(kuò)起來,如果是單雙混合,那么,用單引號(hào)擴(kuò)起來,如果輸出字符串沒有單,雙引號(hào),用單引號(hào)擴(kuò)起來。

關(guān)于python中的字符串用表示什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI