How to list comprehension using multiple if condition and multiple lists in Python

1 Answer

0 votes
lst1 = [1, 2, 3, 4, 9]
lst2 = [5, 6, 7, 8]

lstc = [x * y for x in lst1 for y in lst2 if x > 3 if y % 2 == 0]

print(lstc)


     
 
'''
run:
 
[24, 32, 54, 72]
 
'''

 



answered Jan 11, 2021 by avibootz

Related questions

...