Python代碼中有時候出現比較長的字符串需要換行,在編寫過程中可能會遇到一些問題,本文將為大家介紹Python中長字符串的換行方式。
# Method 1: 用反斜杠 '\' 實現換行 string = 'This is a very long string that requires \ multiple lines to be displayed properly' print(string) # Method 2: 用圓括號 '()' 包裹字符串實現換行 string = ('This is a very long string that requires ' 'multiple lines to be displayed properly') print(string) # Method 3: 用三重引號 ''' 或 """ 實現換行 string = '''This is a very long string that requires multiple lines to be displayed properly''' print(string) string = """This is a very long string that requires multiple lines to be displayed properly""" print(string)
以上三種方式都可以實現Python中長字符串的換行,具體使用哪種方式,可以根據自己的習慣和需要來選擇。
需要注意的是,如果換行符 '\' 或圓括號 '()' 不放在行尾,會報錯。同時,若使用三重引號做換行,引號的縮進位置將會成為字符串的一部分,影響到字符串輸出的格式。