How to get numbers from the list that are not equal as a tuple using list comprehension in Python

1 Answer

0 votes
lst1 = [1, 2, 4]
lst2 = [1, 4]

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

print(lst) 



'''
run:

[(1, 4), (2, 1), (2, 4), (4, 1)]
 
'''

 



answered Jul 24, 2019 by avibootz
...