In this tutorial, we will look at how to split a string into a list of strings on the occurrences of a newline character, "\n"
in Python with the help of examples.
If you prefer a video tutorial over text, check out the following video detailing the steps in this tutorial –
How to split a string in Python?
You can use the Python string split()
function to split a string (by a delimiter) into a list of strings. To split a string by newline character in Python, pass the newline character "\n"
as a delimiter to the split()
function.
The following is the syntax –
# split string s by newline character s.split("\n")
It returns a list of strings resulting from splitting the original string on the occurrences of a newline, "\n"
.
Let’s look at some examples.
Split string by Newline
Here, we pass a newline character, "\n"
as the delimiter to the string split()
function.
# string with newline characters s = "You are\nMy Fire\nThe one\nDesire" # split string by newline ls = s.split("\n") print(ls)
Output:
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
['You are', 'My Fire', 'The one', 'Desire']
The resulting list contains words resulting from the split of the original string on occurrences of a newline character.
Fix the number of splits
You can also specify the maximum number of splits to be made using the maxsplit
parameter. By default, the string split()
function makes all the possible splits.
Let’s only split the above string into two parts at the occurrence of a newline character, "\n"
starting from the left. To split the string into two parts, the maxsplit
should be 1
, because we’re making only one split resulting in two strings.
# string with newline characters s = "You are\nMy Fire\nThe one\nDesire" # split string by newline ls = s.split("\n", maxsplit=1) print(ls)
Output:
['You are', 'My Fire\nThe one\nDesire']
You can see that the resulting list has only two strings.
Let’s look at another example.
Let’s split the original string into three parts, here we pass maxsplit=2
.
# string with newline characters s = "You are\nMy Fire\nThe one\nDesire" # split string by newline ls = s.split("\n", maxsplit=2) print(ls)
Output:
['You are', 'My Fire', 'The one\nDesire']
The resulting list has only three strings.
You might also be interested in –
- Python – Split String by Underscore
- Python – Remove Multiple Spaces From a String
- Remove Linebreaks From String in Python
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.