您好,登錄后才能下訂單哦!
字符串在Python中怎么輸出?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
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
值得說明的是,被單引號(hào)(single quote)或雙引號(hào)(double quotes)包圍的字符串,這兩者的作用是一樣的:
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" >>> >>> ''single'' #單引號(hào)中輸出單引號(hào)字符報(bào)錯(cuò),加上轉(zhuǎn)義字符就可以了。 SyntaxError: invalid syntax >>> '\'single\'' "'single'" >>> a = '\'single\'' >>> print(a) 'single' >>> '"My python', lession' #單引號(hào)中輸出雙引號(hào)可以,如有單引號(hào),必須進(jìn)行轉(zhuǎn)義 SyntaxError: EOL while scanning string literal >>> '"My python\', lession' '"My python\', lession' >>> a = '"My python\', lession' >>> print(a) "My python', lession
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)字符串在Python中怎么輸出大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎ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)容。