Skip to content

Commit e2dd63b

Browse files
authored
Update README.md
1 parent c8c7826 commit e2dd63b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

exercises/08.1-Merge_list/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ Write a function `merge_list` that merges two lists and returns a single new lis
1212

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

15-
## 💡 Hint:
15+
## 💡 Hints:
1616

17-
- You will have to loop through each list and insert their items into a new list.
17+
+ You will have to loop through each list and insert their items into a new list.
18+
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".
1820

1921
## 💻 Expected result:
2022

0 commit comments

Comments
 (0)