I have a multi-line string that I want to do an operation on each line, like so:
inputString = """Line 1 Line 2 Line 3"""
I want to iterate on each line:
for line in inputString: doStuff()
To split the line in Python, use the String split() method. The split() is an inbuilt method that returns a list of lines after breaking the given string by the specified separator. In this tutorial, the line is equal to the string because there is no concept of a line in Python. So you can think of a line as a string.
inputString.splitlines()
Will give you a list with each item, the splitlines()
method is designed to split each line into a list element.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With