File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/08.1-Merge_list Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments