Python String splitlines() MethodPython splitlines() method splits the string based on the lines. It breaks the string at line boundaries and returns a list of splitted strings. Line breakers can be a new line (\n), carriage return (\r) etc. A table of line breakers are given below which split the string. This method splits on the given line boundaries.
SignatureParameterskeepends: It is a boolean value which can be either True or False. It is optional. ReturnIt returns a comma separated list of lines. Let's see some examples of splitlines() method to understand it's functionality. Python String splitlines() Method Example 1Output: Java is a programming language ['Java is a programming language'] ['Java ', ' is a programming ', ' language'] Python String splitlines() Method Example 2Passing True to the method which causes to include line breakers into the list of string. See the example below. Output: ['Java \n', ' is a programming \r', ' language'] Python String splitlines() Method Example 3Output: ['Java ', ' is a programming ', ' language for ', ' software development'] Java is a programming language for software development Next TopicPython Strings |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India