We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95810cc commit 329e451Copy full SHA for 329e451
handy-stuff-strings.md
@@ -25,16 +25,6 @@ We also know how to repeat them multiple times.
25
>>>
26
```
27
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
38
Python strings are **immutable**. That's basically a fancy way to say that
39
they cannot be changed in-place, and you need to create a new string to
40
change them. Even `some_string += another_string` creates a new string.
0 commit comments