Answers for "python filter list of strings"

8

filter list with python

scores = [70, 60, 80, 90, 50]
filtered = filter(lambda score: score >= 70, scores)

print(list(filtered))

# Output:
[70, 80, 90]
Posted by: Guest on January-12-2021
0

python filter list of strings

# To support matches from the beginning, not any matches:

items = ['a', 'ab', 'abc', 'bac']
prefix = 'ab'

filter(lambda x: x.startswith(prefix), items)
Posted by: Guest on October-14-2021

Code answers related to "python filter list of strings"

Python Answers by Framework

Browse Popular Code Answers by Language