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)
| 2604 | return split(self, sep, maxsplit) |
| 2605 | |
| 2606 | def splitlines(self, keepends=None): |
| 2607 | """ |
| 2608 | For each element in `self`, return a list of the lines in the |
| 2609 | element, breaking at line boundaries. |
| 2610 | |
| 2611 | See Also |
| 2612 | -------- |
| 2613 | char.splitlines |
| 2614 | |
| 2615 | """ |
| 2616 | return splitlines(self, keepends) |
| 2617 | |
| 2618 | def startswith(self, prefix, start=0, end=None): |
| 2619 | """ |