Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
307 views
in Technique[技术] by (71.8m points)

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

I have two strings like this:

str1 = "my fav fruit apple"
str2 = "my fav vegetable carrot"

I want to join the two strings to become :

"my fav fruit apple
my fav vegetable carrot"

i.e.: become one string with a new line between them. How to do that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use the concatenation operator, +:

str3 = str1 + '
' + str2

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

str3 = '
'.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 = '
'.join(lines)
print(story)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...