shell中输出文本之间的Python间距

时间:2014-05-12 12:51:19

标签: python shell

我最近一直在尝试使用python以及它可以用于什么。所以我需要帮助一些输出到shell的代码。

目前代码如下:

"print ("Hello and welcome to my world")
"print ("I'd like you to meet my family")

将其输出到shell中:

Hello and welcome to my world
I'd like you to meet my family

是否有任何命令我可以在两条输出线之间放置一个空格,使它看起来像这样?:

Hello and welcome to my world

I'd like you to meet my family

由于

3 个答案:

答案 0 :(得分:2)

如果您使用Python 2,

print ("Hello and welcome to my world")
print
print ("I'd like you to meet my family")

或者如果你使用Python 3,

print ("Hello and welcome to my world")
print ()
print ("I'd like you to meet my family")

或使用\n。这适用于任何版本的Python。

print ("Hello and welcome to my world\n")
print ("I'd like you to meet my family")

答案 1 :(得分:0)

只需在第一行添加额外的换行符:

print ("Hello and welcome to my world\n")

答案 2 :(得分:0)

只要您想跳过该行

,只需添加\n即可