circuitpython/tests/basics/filter.py

3 lines
91 B
Python
Raw Normal View History

2014-01-14 20:37:08 -05:00
print(list(filter(lambda x: x & 1, range(-3, 4))))
print(list(filter(None, range(-3, 4))))