mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
10 lines
164 B
Python
10 lines
164 B
Python
try:
|
|
filter
|
|
except:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
print(list(filter(lambda x: x & 1, range(-3, 4))))
|
|
print(list(filter(None, range(-3, 4))))
|