For each element in `self`, return a list of the words in the string, using `sep` as the delimiter string. See Also -------- char.split
(self, sep=None, maxsplit=None)
| 2592 | return asarray(rstrip(self, chars)) |
| 2593 | |
| 2594 | def split(self, sep=None, maxsplit=None): |
| 2595 | """ |
| 2596 | For each element in `self`, return a list of the words in the |
| 2597 | string, using `sep` as the delimiter string. |
| 2598 | |
| 2599 | See Also |
| 2600 | -------- |
| 2601 | char.split |
| 2602 | |
| 2603 | """ |
| 2604 | return split(self, sep, maxsplit) |
| 2605 | |
| 2606 | def splitlines(self, keepends=None): |
| 2607 | """ |