How to combine not equal elements of two lists in Python

1 Answer

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

combine = [(a, b) for a in lst1 for b in lst2 if a != b]

print(combine)

     
     
     
'''
run:
     
[(1, 2), (1, 5), (1, 3), (1, 9), (2, 5), (2, 3), (2, 9), (3, 2), (3, 5), (3, 9)]
   
'''

 



answered Feb 20, 2023 by avibootz
...