EN
Python - split string by new line character
0
points
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']