num_list_1 = [1,2,3,4]
sum of num_list_1 = 10
num_list_2 = [5,6,7,8]
sum of num_list_2 = 26
how would I be able to sum together num_list_1
and num_list_2
.
I've tried doing it myself however as it is a list it wont let me concatenate them.