如何在Python中添加CMD换行符? 我尝试了以下内容,但它仍然是一段。
print "Welcome to xbrEra's first application";
print
print " using Python 2.7.1. I hope you enjoy";
print
print "-------------------------------------";
print
答案 0 :(得分:3)
取决于您的操作系统:
print "\n"
或
print "\r\n"
答案 1 :(得分:2)
Python的print stmt会自动添加newline
(可能是'\ r \ n'或'\ n',具体取决于您的操作系统)。如果您不想添加换行符,可以使用逗号结束打印stmt。与print "hello,world",
类似,您可以在字符串中明确添加换行符控制字符以获得该效果。
答案 2 :(得分:2)
如果您真的想要控制如何格式化纯文本块,请使用三引号字符串。
print """
Welcome to xbrEra's first application
using Python 2.7.1. I hope you enjoy
-------------------------------------
"""