Heredoc is frequently used when develop web app in various platform - it can be easily used by starting """ and ending """

Below is an simple example

text="""{name}
was
{place}"""

print(text.format(name='Louis', place='here'))