How to get an array with values above specific value N from a list in Python

1 Answer

0 votes
numbers = [3, 5, 7, 12, 23, 43, 55, 68, 79, 99]


def f(num):
    if num < 23:
        return False
    else:
        return True

result = filter(f, numbers)

for n in result:
    print(n)


'''
run:

23
43
55
68
79
99

'''

 



answered Dec 11, 2018 by avibootz

Related questions

...