Skip to content

Commit 22fab0e

Browse files
Update assignment_01.py
1 parent a779506 commit 22fab0e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Section_03/assignment_01.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
# your code below:
99

10-
def merge_lists(list_a, list_b):
11-
return list_a + list_b
10+
def merge_lists(list1, list2):
11+
return list1 + list2
1212

1313
print(merge_lists([1,2,3,4], ['a','b','c']))
1414

@@ -50,4 +50,4 @@ def merge_lists(list_a, list_b):
5050
# return list_a + list_b
5151
#
5252
# my_list = merge_lists([1,2,3],['a', 'b', 'c'])
53-
# print(my_list)
53+
# print(my_list)

0 commit comments

Comments
 (0)