在Python中,可以使用\n来表示换行符。下面是一个示例,演示了如何使用换行符来将字符串变量拼接成多行:
\n
str1 = "Hello" str2 = "World" str3 = "Python" result = str1 + "\n" + str2 + "\n" + str3 print(result)
运行上面的代码,输出结果为:
Hello World Python
这样就实现了字符串变量的拼接并换行显示。