How to use list comprehension to add two lists in Python

1 Answer

0 votes
lst1 = [3, 5, 7] 
lst2 = [1, 2] 

# 1+3, 2+3, 1+5, 2+5, 1+7, 2+7

result = [x + y for x in lst1 for y in lst2]

print(result)



'''
run:

[4, 5, 6, 7, 8, 9]

'''

 



answered Aug 22, 2019 by avibootz
...