Skip to content

Commit 329e451

Browse files
committed
fix stuff
1 parent 95810cc commit 329e451

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

handy-stuff-strings.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ We also know how to repeat them multiple times.
2525
>>>
2626
```
2727

28-
Also note that everything returns a new string, and the original string
29-
is never modified.
30-
31-
```py
32-
>>> our_string = "Hello World!"
33-
>>> our_string
34-
'Hello World!'
35-
>>>
36-
```
37-
3828
Python strings are **immutable**. That's basically a fancy way to say that
3929
they cannot be changed in-place, and you need to create a new string to
4030
change them. Even `some_string += another_string` creates a new string.

0 commit comments

Comments
 (0)