Skip to content

Commit

Permalink
Typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinYooJung committed Dec 9, 2022
1 parent 0b19eba commit ec87e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 05_Day_Lists/05_lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ print(fruits) # []

### Copying a List

It is possible to copy a list by reassigning it to a new variable in the following way: list2 = list1. Now, list2 is a reference of list1, any changes we make in list2 will also modify the original, list2. But there are lots of case in which we do not like to modify the original instead we like to have a different copy. One of way of avoiding the problem above is using _copy()_.
It is possible to copy a list by reassigning it to a new variable in the following way: list2 = list1. Now, list2 is a reference of list1, any changes we make in list2 will also modify the original, list1. But there are lots of case in which we do not like to modify the original instead we like to have a different copy. One of way of avoiding the problem above is using _copy()_.

```py
# syntax
Expand Down

0 comments on commit ec87e0d

Please sign in to comment.