Browse Source

String update

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

4
README.md

@ -226,8 +226,8 @@ from numbers import Number, Integral, Real, Rational, Complex
String
------
```python
<str> = <str>.strip() # Strips all whitespace characters from start and end.
<str> = <str>.strip('<chars>') # Strips all passed characters from start and end.
<str> = <str>.strip() # Strips all whitespace characters from both ends.
<str> = <str>.strip('<chars>') # Strips all passed characters from both ends.
```
```python

Loading…
Cancel
Save