How to filter a list with filter function and conditional lambda function in Python

1 Answer

0 votes
lst = [2, 5, 23, 12, 54, 7, 65, 76, 87, 9, 10]

lst = list(filter(lambda x : x > 3 and x <= 18, lst))

print(lst)



'''
run:

[5, 12, 7, 9, 10]

'''

 



answered Jan 31, 2020 by avibootz
...