[python/en] deep/shallow copy wording confusion

This commit is contained in:
jsk 2024-09-25 13:14:29 +01:00
parent 495272cff9
commit ec25b64568

View File

@ -226,7 +226,7 @@ li[::-1] # Return list in reverse order => [3, 4, 2, 1]
# Use any combination of these to make advanced slices
# li[start:end:step]
# Make a one layer deep copy using slices
# Make a shallow copy using slices
li2 = li[:] # => li2 = [1, 2, 4, 3] but (li2 is li) will result in false.
# Remove arbitrary elements from a list with "del"