如何在Python中换行?
字符串是字符的集合,可以表示单个单词或整个句子。与Java不同,不需要显式声明Python字符串,可以直接将字符串值赋给字面量。
Python中的字符串由字符串类表示,该类提供多个函数和方法,可以使用这些函数和方法对字符串执行各种操作。
在本文中,我们将了解如何在Python中换行。
使用带括号的换行符
一种方法是使用带括号的换行符。使用Python在括号、方括号和大括号内推断的续行是换行长行的推荐方法。
如果需要,可以在表达式周围添加额外的括号。我们必须将这些带括号的换行符应用于要换行的长行。
示例1
在下面的示例中,我们以字符串作为输入,并使用列表带括号的换行符将其换行。
str1 = "Welcome to Tutroialspoint" print("The given string is") print(str1) print("After wrapping the line") res = list(str1) #Using parenthesized line break (list) print(res)
输出
上述示例的输出为:
The given string is Welcome to Tutroialspoint After wrapping the line ['W', 'e', 'l', 'c', 'o', 'm', 'e', ' ', 't', 'o', ' ', 'T', 'u', 't', 'r', 'o', 'i', 'a', 'l', 's', 'p', 'o', 'i', 'n', 't']
示例2
在下面的示例中,我们将采用与上述相同的示例,但我们将集合作为带括号的换行符。
str1 = "Welcome to Tutroialspoint" print("The given string is") print(str1) print("After wrapping the line") res = set(str1) #Using parenthesized line break (set) print(res)
输出
上述示例的输出为:
The given string is Welcome to Tutroialspoint After wrapping the line {'i', 'W', 'o', 'T', 'a', 'p', 'm', 'r', 'l', 'c', ' ', 'u', 'n', 'e', 't', 's'}
使用“\”运算符
您还可以使用“\”运算符在Python中换行。如果您使用反斜杠,它看起来会更好。确保续行正确缩进。最好在二元运算符之后而不是之前进行换行。我们必须仔细缩进反斜杠附近的空格,它必须位于两行之间。
示例
在下面的示例中,我们以字符串作为输入,并使用反斜杠运算符换行。
str1 = """This s a really long line, but we can make it across multiple lines.""" print("The given string is ") print(str1) print("Wrapping the given input") res = 'This s a really long line,', \ 'but we can make it across multiple lines.' #Wrapping the line using backslash print(res)
输出
上述示例的输出为:
The given string is This s a really long line, but we can make it across multiple lines. Wrapping the given input ('This s a really long line,', 'but we can make it across multiple lines.')
广告