micropython/tests/basics/filter.py

3 wiersze
91 B
Python
Czysty Zwykły widok Historia

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