输出结果:
代码中:\n 表示回车换行,此处\n后若加空格,则换行字符也会空出一格,显示如下:
加入几个\n看一下作用:
print """ There's something going on here.\nWith the three double-quotes.\n We'll be able to type as much as we like. Even 4 lines if we want, or 5, or 6." """打印结果如下:
若最后一段想使用双引号,可以这么写:在每行最后加上“\”,就是没啥必要╮(╯_╰)╭:
print "There\'s something going on here.\ \nWith the three double-quotes.\ \nWe\'ll be able to type as much as we like.\ \nEven 4 lines if we want, or 5, or 6."输出结果与使用三个双引号相同