1

我正在用 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'?

这是我的代码:

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

谢谢!

4

3 回答 3

6

打印换行符。

print("\n")

或者:

print("An angry-looking dwarf throws an axe at you.\nYou die.\n")
于 2012-04-10T00:26:53.853 回答
2

你有几个解决方案:

更简单的方法是在你的行之间使用一个print语句,单独使用它会打印一个换行符。

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

于 2012-04-10T00:28:03.513 回答
1
print('\v')

垂直空间的垂直选项卡。

于 2017-05-03T13:15:19.253 回答