how to filter list in python code example
Example 1: filter list with python
scores = [70, 60, 80, 90, 50]
filtered = filter(lambda score: score >= 70, scores)
print(list(filtered))
[70, 80, 90]
Example 2: python filter
number_list = range(-5, 5)
less_than_zero = list(filter(lambda x: x < 0, number_list))
print(less_than_zero)
Example 3: filter function in python
nums1 = [2,3,5,6,76,4,3,2]
def bada(num):
return num>4
filters = list(filter(bada, nums1))
print(filters)
(or)
bads = list(filter(lambda x: x>4, nums1))
print(bads)