Create a function that takes a list and returns the sum of all the items in that list.
sum_list([1, 2, 3]) ➞ 6 # 1 + 2 + 3 = 6 sum_list([1, [2, [1]], 3]) ➞ 7 # 1 + 2 + 1 + 3 = 7
sum()