How to join two string with a new line between them?

You can use the concatenation operator, +:

str3 = str1 + '\n' + str2

Or you can use the join method on your delimiter, '\n':

str3 = '\n'.join([str1, str2])

The latter approach works well when you have a bunch of strings in an array.

lines = ['A Story', 'by Me', '', 'An aardvark escaped from the zoo.', '', 'The End']
story = '\n'.join(lines)
print(story)

Leave a Comment