Browse Source

String

pull/28/head
Jure Šorn 5 years ago
parent
commit
e36fecff3f
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -245,7 +245,7 @@ String
```python
<list> = <str>.split() # Splits on any whitespace character.
<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

Loading…
Cancel
Save