The title sums it up really. I've got a string inside an array which is supposed to be for a multiple choice question game in a tutorial I'm following.
\n is to create a new line right? Look here.
When the tutor does it, and I'm absolutely copy/pasta his method, he gets line breaks, but me, no. I have the same version of python and am on Windows
question_prompts = [
"What color are apples?\n(a) Red/Green\n(b) Purple\n(c) Black\n\n",
"What color are bananas?\n(a) Red\n(b) Pink\n(c) Yellow\n\n",
"What color are Strawberries?\n(a) Pink\n(b) Red\n(c) Yellow\n\n",
]
print(question_prompts)