Skip to content

Commit db64d8a

Browse files
committed
update
1 parent 139febb commit db64d8a

File tree

6 files changed

+838
-4
lines changed

6 files changed

+838
-4
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,17 @@ print(positive_infinity > large_integer) # Output: True
546546
- In contrast, comparing an integer to float('inf') does not involve rounding or precision errors. The nature of infinity ensures that it is always clearly greater than any finite value, eliminating the need for tolerance-based comparisons.
547547

548548

549+
### Shallow copy
550+
551+
Syntax: a[start:stop:step] with start, stop, and step all set to their default values.
552+
553+
- Both a[:] and a[::] create a shallow copy of the list a.
554+
- a[:] is a more common and concise way to copy an entire list.
555+
- a[::] explicitly includes the step parameter, which defaults to 1, but is rarely necessary unless you want to be explicit about including all elements with a default step.
556+
557+
**In summary, there's no functional difference between the two in the context of copying a list; it's mainly a matter of style and readability. If you want to be explicit about the step value, you can use a[::].**
558+
559+
549560

550561

551562

exercise/advanced.py

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
copied_list = original_list[:]
4444
print(copied_list) # Output: [1, 2, 3, 4, 5]
4545
print(copied_list is original_list) # Output: False
46+
print(copied_list == original_list) # Output: True
4647

4748
'''
4849
while my_list[:] on the right side creates a shallow copy,

0 commit comments

Comments
 (0)