From ec87e0da4204856c042fa6c0397b49563556f5e6 Mon Sep 17 00:00:00 2001 From: ShinYooJung Date: Fri, 9 Dec 2022 14:44:05 +0900 Subject: [PATCH] Typo error --- 05_Day_Lists/05_lists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_Day_Lists/05_lists.md b/05_Day_Lists/05_lists.md index ac18fce3..b3fb49f6 100644 --- a/05_Day_Lists/05_lists.md +++ b/05_Day_Lists/05_lists.md @@ -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