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()

6 Answers
6

Leave a Reply

Your email address will not be published. Required fields are marked *