mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +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))))
|