I have a multi-line string literal that I want to do an operation on each line, like so.
inputString = """Line 1
Line 2
Line 3"""
I want to do something like the following.
for line in inputString:
doStuff()
|
|
|
Like the others said:
This is identical to the above, but the string module's functions are deprecated and should be avoided:
Alternatively, if you want each line to include the break sequence (CR,LF,CRLF), use the splitlines method with a True argument:
|
|||||||||
|
Will give you an array with each item, the splilines() function is designed to split each line into an array element. |
|||
|
|
|
|||||||
|