|
@ -245,7 +245,7 @@ String |
|
|
```python |
|
|
```python |
|
|
<list> = <str>.split() # Splits on any whitespace character. |
|
|
<list> = <str>.split() # Splits on any whitespace character. |
|
|
<list> = <str>.split(sep=None, maxsplit=-1) # Splits on 'sep' str at most 'maxsplit' times. |
|
|
<list> = <str>.split(sep=None, maxsplit=-1) # Splits on 'sep' str at most 'maxsplit' times. |
|
|
<str> = <str>.join(<list>) # Joins elements using string as separator. |
|
|
|
|
|
|
|
|
<str> = <str>.join(<collection>) # Joins string elements using str as separator. |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
```python |
|
|
```python |
|
|