如何在Python脚本中的段落之间留出空格?

如何在Python脚本中的段落之间留出空格?,python,paragraph,Python,Paragraph,我正在用Python(纯文本)制作一个游戏,但当人们玩它时,它会变得混乱,因为段落之间没有空格,所以看起来像这样: 'You step outside and feel the wind on your face.' 'Which direction do you turn?' 'You step outside and feel the breeze on your face' 'What do you do next'? 但我希望它看起来像这样: 'You step outside a

我正在用Python(纯文本)制作一个游戏,但当人们玩它时,它会变得混乱,因为段落之间没有空格,所以看起来像这样:

'You step outside and feel the wind on your face.'
'Which direction do you turn?'
'You step outside and feel the breeze on your face'

'What do you do next'?
但我希望它看起来像这样:

'You step outside and feel the wind on your face.'
'Which direction do you turn?'
'You step outside and feel the breeze on your face'

'What do you do next'?
这是我的密码:

print 'You step outside and feel the cool breeze on your face.'
what = raw_input ('What do you do next ')

谢谢

打印换行符

print("\n")
print('\v')
或:


打印换行符

print("\n")
print('\v')
或:


您有一些解决方案:

更简单的方法是在行之间使用
print
语句,单独使用它可以打印换行符


或者,您可以使用
'\n'
字符结束正在打印的字符串,这将导致换行,或者您可以使用相同的字符开始输入。

您有一些解决方案:

print("\n")
print('\v')
更简单的方法是在行之间使用
print
语句,单独使用它可以打印换行符

或者,您可以使用
'\n'
字符结束正在打印的字符串,这将导致换行,或者您可以使用相同的字符开始输入

print("\n")
print('\v')
垂直空间的垂直选项卡

垂直空间的垂直选项卡