Hello, I am having a similar problem. I have several paragraphs of text that are repeated multiple times in my program. I want to save the text as a variable, with line breaks separating each paragraph, and then insert this variable in the code wherever it's needed.
Based on the suggestion above, I have tried this:
>>blank = ""
>>repeated_text = ["paragraph 1.{blank}paragraph 2.{blank}.paragraph 3"]
{repeated text}
And also:
>>blank = ""
>>repeated_text = ["paragraph 1.", "paragraph 2", "paragraph 3"]
{repeated_text[1]}{blank}{repeated_text[2]}{blank}{repeated_text[3]}
As well as trying out several other approaches. None of these result in a line break being displayed in the output (it seems instead they simply add no text (i.e. "") wherever the {blank} is inserted, resulting in no change to the text.
Any advice would be much appreciated. Thank you!