亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python續行符的使用示例

發布時間:2020-11-18 13:52:21 來源:億速云 閱讀:539 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關python續行符的使用示例的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

跨行的字面字符串可用以下幾種方法表示。使用續行符,即在每行最后一個字符后使用反斜線來說明下一行是上一行邏輯上的延續。

以下使用 \n 來添加新行:

>>> '"Isn\'t," she said.'
'"Isn\'t," she said.'
>>> print('"Isn\'t," she said.')
"Isn't," she said.
>>> s = 'First line.\nSecond line.'  # \n 意味著新行
>>> s  # 不使用 print(), \n 包含在輸出中
'First line.\nSecond line.'
>>> print(s)  # 使用 print(), \n 輸出一個新行
First line.
Second line.

以下使用 反斜線(\) 來續行:

hello = "This is a rather long string containing\n\
several lines of text just as you would do in C.\n\
    Note that whitespace at the beginning of the line is\
 significant."
 
print(hello)

注意,其中的換行符仍然要使用 \n 表示——反斜杠后的換行符被丟棄了。以上例子將如下輸出:

This is a rather long string containing
several lines of text just as you would do in C.
    Note that whitespace at the beginning of the line is significant.

或者,字符串可以被 """ (三個雙引號)或者 ''' (三個單引號)括起來。使用三引號時,換行符不需要轉義,它們會包含在字符串中。以下的例子使用了一個轉義符,避免在最開始產生一個不需要的空行。

print("""\
Usage: thingy [OPTIONS]
     -h                        Display this usage message
     -H hostname               Hostname to connect to
""")

其輸出如下:

Usage: thingy [OPTIONS]
     -h                        Display this usage message
     -H hostname               Hostname to connect to

如果我們使用"原始"字符串,那么 \n 不會被轉換成換行,行末的的反斜杠,以及源碼中的換行符,都將作為數據包含在字符串內。例如:

hello = r"This is a rather long string containing\n\
several lines of text much as you would do in C."
print(hello)

將會輸出:

This is a rather long string containing\n\
several lines of text much as you would do in C.

感謝各位的閱讀!關于python續行符的使用示例就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

达日县| 萨嘎县| 乐东| 肇庆市| 永善县| 渭南市| 洛浦县| 六盘水市| 通城县| 儋州市| 西充县| 商都县| 襄樊市| 申扎县| 建德市| 吴桥县| 兰溪市| 浦北县| 佛冈县| 和静县| 明水县| 怀集县| 石首市| 咸宁市| 营口市| 滦平县| 阿城市| 如东县| 临泉县| 定州市| 绥江县| 平度市| 广宗县| 合川市| 尚义县| 弥渡县| 上高县| 德钦县| 武川县| 尉氏县| 疏附县|