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)
| 2496 | return asarray(rstrip(self, chars)) |
| 2497 | |
| 2498 | def split(self, sep=None, maxsplit=None): |
| 2499 | """ |
| 2500 | For each element in `self`, return a list of the words in the |
| 2501 | string, using `sep` as the delimiter string. |
| 2502 | |
| 2503 | See also |
| 2504 | -------- |
| 2505 | char.split |
| 2506 | |
| 2507 | """ |
| 2508 | return split(self, sep, maxsplit) |
| 2509 | |
| 2510 | def splitlines(self, keepends=None): |
| 2511 | """ |