For each element in `self`, return a list of the lines in the element, breaking at line boundaries. See also -------- char.splitlines
(self, keepends=None)
| 2508 | return split(self, sep, maxsplit) |
| 2509 | |
| 2510 | def splitlines(self, keepends=None): |
| 2511 | """ |
| 2512 | For each element in `self`, return a list of the lines in the |
| 2513 | element, breaking at line boundaries. |
| 2514 | |
| 2515 | See also |
| 2516 | -------- |
| 2517 | char.splitlines |
| 2518 | |
| 2519 | """ |
| 2520 | return splitlines(self, keepends) |
| 2521 | |
| 2522 | def startswith(self, prefix, start=0, end=None): |
| 2523 | """ |