Languages
[Edit]
EN

Python - split string by new line character

0 points
Created by:
marc_so
864

In this article, we would like to show you how to split string by new line character in Python.

Quick solution:

text = "split\nthis\ntext"

words = text.split('\n')
print(words)  # ['split', 'this', 'text']

 

Practical example

In this example, we split the text string into the words list using split() method.

text = "split\nthis\ntext"

words = text.split('\n')
print(words)  # ['split', 'this', 'text']

Output:

['split', 'this', 'text']
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - split string by new line character

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join