我在Python做一個遊戲(純文本),但它變得混亂,當人們玩它,因爲在段落之間沒有空格,所以它看起來是這樣的:如何在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 ')
謝謝!