How do I make spaces between paragraphs in my Python script?
paragraph, python
Solution
Print a newline character.
print("\n")
Or:
print("An angry-looking dwarf throws an axe at you.\nYou die.\n")
Problem
I'm making a game in Python (text only) but it gets confusing when people play it because there is no space between the paragraphs, so it looks like this: ``` 'You step outside and feel the wind on your face.' 'Which direction do you turn?' ``` But I would like it to look like this: ``` 'You step outside and feel the breeze on your face' 'What do you do next'? ``` Here's my code: ``` print 'You step outside and feel the cool breeze on your face.' what = raw_input ('What do you do next ') ``` Thanks!