我正在使用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 ')
谢谢!
答案 0 :(得分:6)
打印换行符。
print("\n")
或者:
print("An angry-looking dwarf throws an axe at you.\nYou die.\n")
答案 1 :(得分:2)
您有几个解决方案:
更简单的一种方法是在你的行之间使用print
语句,单独使用它来打印换行符。
或者,您可以结束使用'\n'
字符打印的字符串,这将导致换行,或者您可以使用相同的字符开始输入。
答案 2 :(得分:1)
print('\v')
垂直空间的垂直制表符。