Copyright © tutorialspoint.com
This method returns a list with all the lines in string, optionally including the line breaks (if num is supplied and is true)
str.splitlines( num=string.count('\n')) |
Here is the detail of parameters:
num: any number, if present then it would be assumed that line breaks need to be included in the lines.
It returns true if found matching string otherwise false.
#!/usr/bin/python str = "Line1-a b c d e f\nLine2- a b c\n\nLine4- a b c d"; print str.splitlines( ); print str.splitlines( 0 ); print str.splitlines( 3 ); print str.splitlines( 4 ); print str.splitlines( 5 ); |
This will produce following result, note each line indicates an array:
['Line1-a b c d e f', 'Line2- a b c', '', 'Line4- a b c d'] ['Line1-a b c d e f', 'Line2- a b c', '', 'Line4- a b c d'] ['Line1-a b c d e f\n', 'Line2- a b c\n', '\n', 'Line4- a b c d'] ['Line1-a b c d e f\n', 'Line2- a b c\n', '\n', 'Line4- a b c d'] ['Line1-a b c d e f\n', 'Line2- a b c\n', '\n', 'Line4- a b c d'] |
Copyright © tutorialspoint.com