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 4c8907e commit 88263cdCopy full SHA for 88263cd
lists-and-tuples.md
@@ -186,7 +186,7 @@ behave like this:
186
187
This can be confusing at first, but it's actually easy to
188
explain. The problem with this code example is the `b = a`
189
-line. If we draw a diagram of this example it looks like this:
+line. If we draw a picture of the variables it looks like this:
190
191

192
@@ -218,6 +218,8 @@ If we need **a new list with similar content** we can use the
218
>>> b is a
219
False
220
>>> b.append(4)
221
+>>> b
222
+[1, 2, 3, 4]
223
>>> a
224
[1, 2, 3]
225
>>>
0 commit comments