I have now:
list1 = [1, 2, 3] list2 = [4, 5, 6]
I wish to have:
[1, 2, 3] + + +
a_list = [] b_list = [] for i in range(1,100): a_list.append(random.randint(1,100)) for i in range(1,100): a_list.append(random.randint(101,200)) [sum(x) for x in zip(a_list , b_list )]