Skip to content

Commit 5765fa0

Browse files
authored
Update README.md
1 parent 2a1efc9 commit 5765fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/08.1-Merge_list/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Write a function `merge_list` that merges two lists and returns a single new lis
88

99
2. Loop the two lists.
1010

11-
3. Concatenate the results in an empty list.
11+
3. Append the results into an empty list.
1212

1313
4. Print the new variable with the merged lists.
1414

1515
## 💡 Hints:
1616

1717
+ You will have to loop through each list and insert their items into a new list.
1818

19-
+ There are more ways to merge lists in Python, this would be a good time for you to search on the Internet "how to merge lists in python".
19+
+ There are more ways to merge lists in Python. This would be a good time for you to search on the Internet "how to merge lists in python".
2020

2121
## 💻 Expected result:
2222

0 commit comments

Comments
 (0)