I am currently trying to cross join two lists with addition and I'm not entirely sure how to do that.
Suppose I have to two lists:
list1 = [5,2,8]
list2 = [11,6,3]
sum_list = []
my expected output would be:
print (sum_list)
Output
[16,11,8,13,8,5,19,14,11]