單雙三引號的使用(python基礎)

2021-08-08 22:36:07 字數 418 閱讀 1063

str=「i love python"和str=『i love python'所列印實現的效果是一樣的,顯示結果都是 i love python。

str=『i love 「python」 』這個**語句實現的效果是 i love 「python」。

str=「 i love 『python』 」,這樣所實現的效果就是 i love 『python』。

str=「「「

i love python,

python loves me,

we love each other。」」」

實現的效果為:

i love python,

python loves me,

we love each other。

三個單引號的作用:表示引號內容其格式按原樣輸出即便裡面存在換行符。

python中單 雙 三引號的區別

在 python中字串可以用單引號括起來,也可以用雙引號,這兩種方式是等價的,而在php當中單引號和雙引號的有些是不一樣的,雖然表示的字串,但是在php的單引號解析速度比雙引號快,如果在python用單號那麼在字串中就可以直接收寫雙引號了,反之亦然。這就是python為什麼允許用兩種方式的原因。在實...

python 3 5 之 單雙三引號

1.單引號和雙引號用法都是一樣的,但是如果字串裡有相同的字元時要使用 進行轉義 舉例 1 print hello 2 print hello 1和2,結果都是hello 3 print hell o 4 print hell o 3和4,結果都是hell o 5 print hell o 6 pri...

python 3 5 之 單雙三引號

1.單引號和雙引號用法都是一樣的,但是如果字串裡有相同的字元時要使用 進行轉義 舉例 1 print hello 2 print hello 1和2,結果都是hello 3 print hell o 4 print hell o 3和4,結果都是hell o 5 print hell o 6 pri...