mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02:00
3 lines
91 B
Python
3 lines
91 B
Python
print(list(filter(lambda x: x & 1, range(-3, 4))))
|
|
print(list(filter(None, range(-3, 4))))
|