我正在用 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 ')
谢谢!